aboutsummaryrefslogtreecommitdiff
path: root/src/utils/irc.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/irc.py')
-rw-r--r--src/utils/irc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/irc.py b/src/utils/irc.py
index 838d9d35..30a3126e 100644
--- a/src/utils/irc.py
+++ b/src/utils/irc.py
@@ -69,8 +69,8 @@ FORMAT_STRIP = [
]
def _format_tokens(s: str) -> typing.List[str]:
is_color = False
- foreground = []
- background = []
+ foreground: typing.List[str] = []
+ background: typing.List[str] = []
is_background = False
matches = [] # type: typing.List[str]