Skip to content

Commit

Permalink
Merge pull request #1225 from lukeyeager/bugfix-plugins-all
Browse files Browse the repository at this point in the history
Bugfix: __all__ misused in plugins/
  • Loading branch information
lukeyeager authored Oct 28, 2016
2 parents dfb73a4 + 7b4d118 commit c853be5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

from .data import DataIngestion

__all__ = [DataIngestion]
__all__ = ['DataIngestion']
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

from .data import DataIngestion

__all__ = [DataIngestion]
__all__ = ['DataIngestion']
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

from .data import DataIngestion

__all__ = [DataIngestion]
__all__ = ['DataIngestion']
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

from .view import Visualization

__all__ = [Visualization]
__all__ = ['Visualization']
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

from .view import Visualization

__all__ = [Visualization]
__all__ = ['Visualization']

0 comments on commit c853be5

Please sign in to comment.