Skip to content

Commit b198bd5

Browse files
authored
Merge pull request #485 from dwskoog/flake8-fix
Flake8 fix
2 parents 3c828e5 + 4ff31a4 commit b198bd5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ def pytest_runtest_setup(item):
1010
pytest.skip("need --runslow option to run")
1111

1212

13-
def pytest_ignore_collect(path, config):
14-
if 'run_test.py' in str(path):
13+
def pytest_ignore_collect(collection_path, config):
14+
if 'run_test.py' in str(collection_path):
1515
return True

streamz/plugins.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def get_entry_point(eps, group):
1919
else:
2020
return eps.get(group, [])
2121

22+
2223
def load_plugins(cls):
2324
eps = importlib.metadata.entry_points()
2425

0 commit comments

Comments
 (0)