Skip to content

Commit

Permalink
Fix linting of setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Jones committed Aug 26, 2015
1 parent 40e92e9 commit eb1c9c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,17 +140,17 @@ class Test(setuptools.Command):
user_options = []

@classmethod
def initialize_options(self):
def initialize_options(cls):
"""Called to give the user options default values."""
pass

@classmethod
def finalize_options(self):
def finalize_options(cls):
"""Called to make sure the user options have valid values."""
pass

@classmethod
def run(self):
def run(cls):
"""Called to actually run the unit tests."""
raise SystemExit(subprocess.call(
[sys.executable, '-Wd', 'crabigator/tests/__init__.py']))
Expand Down

0 comments on commit eb1c9c2

Please sign in to comment.