Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/webassets/filter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import shlex
import tempfile
import pkgutil
from webassets import six
try:
frozenset
except NameError:
Expand Down Expand Up @@ -383,7 +382,7 @@ def __new__(cls, name, bases, attrs):
return klass


class ExternalTool(six.with_metaclass(ExternalToolMetaclass, Filter)):
class ExternalTool(Filter, metaclass=ExternalToolMetaclass):
"""Subclass that helps creating filters that need to run an external
program.

Expand Down
Loading
Loading