]> jfr.im git - irc/weechat/qweechat.git/blobdiff - qweechat/weechat/color.py
Fix style of some dicts
[irc/weechat/qweechat.git] / qweechat / weechat / color.py
index 1fb72be79fbf00d46b6f5bf96719f04dc7307e5d..a777c71990d5c1482533e91fe22a567f454a1787 100644 (file)
@@ -127,7 +127,12 @@ class Color():
             return ''
 
     def _attrcode_to_char(self, code):
-        codes = {'\x01': '*', '\x02': '!', '\x03': '/', '\x04': '_'}
+        codes = {
+            '\x01': '*',
+            '\x02': '!',
+            '\x03': '/',
+            '\x04': '_',
+        }
         return codes.get(code, '')
 
     def _convert_color(self, match):