Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit 1105d9a

Browse files
committed
Flake8: added noqa inlines to init
1 parent bb9f449 commit 1105d9a

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

devitoboundary/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
from .symbolics import *
2-
from .geometry import *
3-
from .distance import *
4-
from .stencils import *
5-
from .topography import *
1+
from .symbolics import * # noqa: F401
2+
from .geometry import * # noqa: F401
3+
from .distance import * # noqa: F401
4+
from .stencils import * # noqa: F401
5+
from .topography import * # noqa: F401
66

77
from pkg_resources import get_distribution, DistributionNotFound
88
try:
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from .stencil_utils import standard_stencil, generic_function
2-
from .stencils import StencilGen
3-
from .evaluation import get_weights
1+
from .stencil_utils import standard_stencil, generic_function # noqa: F401
2+
from .stencils import StencilGen # noqa: F401
3+
from .evaluation import get_weights # noqa: F401
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
from .symbols import (x_a, u_x_a, a, n, n_max, x_b, x_r, x_l, x_c, f, h_x,
2-
eta_l, eta_r)
1+
from .symbols import x_a, u_x_a, a, n, n_max, x_b, x_r # noqa: F401
2+
from .symbols import x_l, x_c, f, h_x, eta_l, eta_r # noqa: F401

0 commit comments

Comments
 (0)