Skip to content

Commit

Permalink
Fix lint in Makefile, fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
asmith26 committed May 17, 2020
1 parent 408ac3c commit 551dd78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fix-lint:
isort --lines 120 --recursive --use-parentheses pandas_toolkit setup.py

lint:
tox lint
tox -e lint

test-all: clean-test
tox
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup

import pandas_toolkit
from pandas_toolkit import __version__ # type: ignore

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

Expand All @@ -11,7 +11,7 @@

setup(
name="pandas_toolkit",
version=pandas_toolkit.__version__,
version=__version__,
description="A collection of pandas accessors to help with common machine learning related functionality.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 551dd78

Please sign in to comment.