summaryrefslogtreecommitdiff
path: root/pygments/filter.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-02-14 16:47:28 +0100
committerGeorg Brandl <georg@python.org>2016-02-14 16:47:28 +0100
commit2882c34a141f4f36ded54d1473c6d4f73684ffc7 (patch)
tree3b7f7d5eb6bd3e74d75e44018439f568ad2cf1aa /pygments/filter.py
parent9ae620fdadc8ca9ad56317754b3d9587f57a6d15 (diff)
downloadpygments-2882c34a141f4f36ded54d1473c6d4f73684ffc7.tar.gz
some pep8 fixups
Diffstat (limited to 'pygments/filter.py')
-rw-r--r--pygments/filter.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/filter.py b/pygments/filter.py
index c8176ed9..f3082037 100644
--- a/pygments/filter.py
+++ b/pygments/filter.py
@@ -34,10 +34,10 @@ def simplefilter(f):
yield ttype, value.lower()
"""
return type(f.__name__, (FunctionFilter,), {
- 'function': f,
- '__module__': getattr(f, '__module__'),
- '__doc__': f.__doc__
- })
+ '__module__': getattr(f, '__module__'),
+ '__doc__': f.__doc__,
+ 'function': f,
+ })
class Filter(object):