diff options
author | 2019-09-09 13:22:09 -0400 | |
---|---|---|
committer | 2019-09-09 15:00:38 -0400 | |
commit | bd03db75805d02da2088ec5067993aa5f23184ae (patch) | |
tree | 4038157164a5d4eaf918870ed3063eda22421816 /bot/__init__.py | |
parent | Add flake8-annotations to dev dependencies (diff) |
Initial linting pass
Bot root, seasons cog, easter cogs, evergreen cogs, halloween cogs
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 9e0290a7..8950423f 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, *args, **kwargs): +def monkeypatch_trace(self, msg: str, *args, **kwargs) -> None: """ Log 'msg % args' with severity 'TRACE'. |