aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/quarg/quassel/formatter.py
diff options
context:
space:
mode:
authorWolfgang Müller2023-03-30 21:05:12 +0200
committerWolfgang Müller2023-03-30 21:05:12 +0200
commitdf585f56fb0bac5fc77fbbfc44276fe8c1f85f83 (patch)
treedad1e301608335759405cef0683b84da98440699 /quarg/quassel/formatter.py
parentbd4c0b3d01ed56ed21297a9e25c53e2bcfdb20c1 (diff)
downloadquarg-df585f56fb0bac5fc77fbbfc44276fe8c1f85f83.tar.gz
Get rid of pylint directives
Since we are migrating to ruff, these are not used anymore.
Diffstat (limited to '')
-rw-r--r--quarg/quassel/formatter.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/quarg/quassel/formatter.py b/quarg/quassel/formatter.py
index 7e7bce6..6a78d7a 100644
--- a/quarg/quassel/formatter.py
+++ b/quarg/quassel/formatter.py
@@ -61,8 +61,6 @@ def format_kick(msg):
return f'<-* {msg.user} has kicked {target} from {msg.buffer}'
def format_kill(msg):
- # pylint: disable=line-too-long
-
# As of 2021-04-24 not even Quassel implements printing this message [1].
# They do have a symbol [2] for it, however, so use that along with the message
# [1] https://github.com/quassel/quassel/blob/285215315e6f2420724532323a4b1bccae156cb1/src/uisupport/uistyle.cpp#L950