diff options
author | gbrandl <devnull@localhost> | 2006-10-29 17:51:32 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-10-29 17:51:32 +0100 |
commit | c427602fe901b202bf8f74eeeaff642c5b377431 (patch) | |
tree | bf2e9671a2752732d29af7c96052a464953555ef /pygments/style.py | |
parent | 415b0f78ad57c1ebd37cfbdeda525c8e791b20ea (diff) | |
download | pygments-c427602fe901b202bf8f74eeeaff642c5b377431.tar.gz |
[svn] Fix some pylint errors.
Diffstat (limited to 'pygments/style.py')
-rw-r--r-- | pygments/style.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/style.py b/pygments/style.py index 07ea9746..caf6ca00 100644 --- a/pygments/style.py +++ b/pygments/style.py @@ -82,7 +82,7 @@ class StyleMeta(type): } def list_styles(cls): - return list(self) + return list(cls) def __iter__(cls): for token in cls._styles: |