Skip to content

Commit b46e551

Browse files
committed
Add required arg to setup so that nose does not call it
1 parent dce0272 commit b46e551

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numpydoc/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
__version__ = '0.8.0.dev0'
44

55

6-
def setup(*args, **kwargs):
6+
def setup(app, *args, **kwargs):
77
from .numpydoc import setup
8-
return setup(*args, **kwargs)
8+
return setup(app, *args, **kwargs)

0 commit comments

Comments
 (0)