Skip to content

Commit 551dd78

Browse files
committed
Fix lint in Makefile, fix mypy
1 parent 408ac3c commit 551dd78

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fix-lint:
1616
isort --lines 120 --recursive --use-parentheses pandas_toolkit setup.py
1717

1818
lint:
19-
tox lint
19+
tox -e lint
2020

2121
test-all: clean-test
2222
tox

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup
44

5-
import pandas_toolkit
5+
from pandas_toolkit import __version__ # type: ignore
66

77
_here = os.path.abspath(os.path.dirname(__file__))
88

@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="pandas_toolkit",
14-
version=pandas_toolkit.__version__,
14+
version=__version__,
1515
description="A collection of pandas accessors to help with common machine learning related functionality.",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)