Skip to content

Commit

Permalink
Disable flake8 on __init__.py files
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Dec 20, 2018
1 parent a21b6a2 commit ef37a58
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions quantecon/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
Import the main names to top level.
"""
Expand Down
1 change: 1 addition & 0 deletions quantecon/game_theory/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
Game Theory SubPackage
Expand Down
1 change: 1 addition & 0 deletions quantecon/game_theory/game_generators/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
game_theory.game_generators
Expand Down
1 change: 1 addition & 0 deletions quantecon/markov/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
Markov Chain SubPackge API
"""
Expand Down
1 change: 1 addition & 0 deletions quantecon/optimize/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
Initialization of the optimize subpackage
"""
Expand Down
1 change: 1 addition & 0 deletions quantecon/random/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
Random SubPackage
=================
Expand Down
1 change: 1 addition & 0 deletions quantecon/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# flake8: noqa
"""
namespace for quantecon.tests
Expand Down
3 changes: 2 additions & 1 deletion quantecon/util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# flake8: noqa
"""
API for QuantEcon Utilities
"""

from .array import searchsorted
from .notebooks import fetch_nb_dependencies
from .random import check_random_state
from .timing import tic, tac, toc, loop_timer
from .timing import tic, tac, toc, loop_timer

0 comments on commit ef37a58

Please sign in to comment.