Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
fixes #49
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Dec 30, 2018
1 parent ecd6d7a commit 0b28afe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions perspective/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from .base import PerspectiveBaseMixin
from .base import PerspectiveBaseMixin # noqa: F401
from .psp import psp
from .view import View
from .aggregate import Aggregate
from .exception import PSPException
from .widget import PerspectiveWidget
from .view import View # noqa: F401
from .aggregate import Aggregate # noqa: F401
from .exception import PSPException # noqa: F401
from .widget import PerspectiveWidget # noqa: F401


# export `plot` and `table` functions
Expand Down
1 change: 0 additions & 1 deletion perspective/validate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import json
from six import iteritems, string_types
from .computed import Functions
from .exception import PSPException
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
description_file = README.md

[flake8]
max-line-length=200
max-line-length=200
exclude=perspective/tests

0 comments on commit 0b28afe

Please sign in to comment.