diff options
author | mathieui <mathieui@mathieui.net> | 2018-08-22 23:32:56 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-08-22 23:32:56 +0200 |
commit | 1524245dd0c3bf63a31393bd1faf3df8f44e1c96 (patch) | |
tree | a03b1df1711733cfab334da23636fa87a3e64343 /data/themes | |
parent | 0e7ebf974e3ec4f47e5f0781781ff43d99c4f6f3 (diff) | |
download | poezio-1524245dd0c3bf63a31393bd1faf3df8f44e1c96.tar.gz poezio-1524245dd0c3bf63a31393bd1faf3df8f44e1c96.tar.bz2 poezio-1524245dd0c3bf63a31393bd1faf3df8f44e1c96.tar.xz poezio-1524245dd0c3bf63a31393bd1faf3df8f44e1c96.zip |
Do not add our directory to the path
it’s bad practice and can create issues
Diffstat (limited to 'data/themes')
-rw-r--r-- | data/themes/dark.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/themes/dark.py b/data/themes/dark.py index 33fc5f37..5879c217 100644 --- a/data/themes/dark.py +++ b/data/themes/dark.py @@ -1,6 +1,6 @@ -import theming +import poezio.theming -class DarkTheme(theming.Theme): +class DarkTheme(poezio.theming.Theme): COLOR_INFORMATION_BAR = (-1, 236) COLOR_STATUS_XA = (53, -1) COLOR_STATUS_AWAY = (214, -1) |