diff options
author | 2019-09-09 16:37:13 -0400 | |
---|---|---|
committer | 2019-09-09 16:37:13 -0400 | |
commit | 4b18d7e430d5cea16406c65349718f72919c01c3 (patch) | |
tree | 7fc4f6a0aea2d16e0409723d205c1ab45dcd920f /bot/__init__.py | |
parent | Initial linting pass (diff) |
Lint remaining files
hacktoberstats cog handled in separate PR
Diffstat (limited to 'bot/__init__.py')
-rw-r--r-- | bot/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__init__.py b/bot/__init__.py index 8950423f..4729e50c 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -13,7 +13,7 @@ logging.TRACE = 5 logging.addLevelName(logging.TRACE, "TRACE") -def monkeypatch_trace(self, msg: str, *args, **kwargs) -> None: +def monkeypatch_trace(self: logging.Logger, msg: str, *args, **kwargs) -> None: """ Log 'msg % args' with severity 'TRACE'. |