- fixed deprecation warning for pylint 3.0 ending support for short class names
- wrong %d for a string fixed
logger.debug("EXIT!")
def set_last_requested_path(domain: str, path: float) -> None:
- logger.debug("domain='%s',path=%d - CALLED!", domain, path)
+ logger.debug("domain='%s',path=%s - CALLED!", domain, path)
domain_helper.raise_on(domain)
if not isinstance(path, str):
# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
-overgeneral-exceptions=BaseException,
- Exception
+overgeneral-exceptions=builtins.BaseException,
+ builtins.Exception