summaryrefslogtreecommitdiff
path: root/pygments/style.py
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2006-10-29 17:51:32 +0100
committergbrandl <devnull@localhost>2006-10-29 17:51:32 +0100
commitc427602fe901b202bf8f74eeeaff642c5b377431 (patch)
treebf2e9671a2752732d29af7c96052a464953555ef /pygments/style.py
parent415b0f78ad57c1ebd37cfbdeda525c8e791b20ea (diff)
downloadpygments-c427602fe901b202bf8f74eeeaff642c5b377431.tar.gz
[svn] Fix some pylint errors.
Diffstat (limited to 'pygments/style.py')
-rw-r--r--pygments/style.py2
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: