diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-07-14 16:25:09 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-07-14 16:25:09 +0200 |
commit | 20ebea1c89a00187db390443ed284e0974ff7222 (patch) | |
tree | e276ce333272f8f6e3a74c054e99c4b3ff14c7ce /poezio/theming.py | |
parent | 3acfd83c243fe0ed0ec0b502aaabf46f9dd3aec3 (diff) | |
download | poezio-20ebea1c89a00187db390443ed284e0974ff7222.tar.gz poezio-20ebea1c89a00187db390443ed284e0974ff7222.tar.bz2 poezio-20ebea1c89a00187db390443ed284e0974ff7222.tar.xz poezio-20ebea1c89a00187db390443ed284e0974ff7222.zip |
Stop making classes inherit from object.
Diffstat (limited to 'poezio/theming.py')
-rwxr-xr-x | poezio/theming.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/theming.py b/poezio/theming.py index 0cf0f27d..983020a3 100755 --- a/poezio/theming.py +++ b/poezio/theming.py @@ -82,7 +82,7 @@ from importlib import machinery finder = machinery.PathFinder() -class Theme(object): +class Theme: """ The theme class, from which all themes should inherit. All of the following values can be replaced in subclasses, in |