Skip to content

Commit d58c08a

Browse files
committed
Pep8 fixes
1 parent 123b160 commit d58c08a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

neo/test/iotest/common_io_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,8 @@ def test_readed_with_lazy_is_compliant(self):
457457

458458
def test__handle_pathlib_filename(self):
459459
if self.files_to_test:
460-
filename = get_test_file_full_path(self.ioclass, filename=self.files_to_test[0],directory=self.local_test_dir)
460+
filename = get_test_file_full_path(self.ioclass, filename=self.files_to_test[0],
461+
directory=self.local_test_dir)
461462
pathlib_filename = pathlib.Path(filename)
462463

463464
if self.ioclass.mode == 'file':

neo/test/iotest/tools.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ def cleanup_test_file(mode, path, directory=None):
4545
shutil.rmtree(path)
4646

4747

48-
def get_test_file_full_path(ioclass, filename=None,
49-
directory=None, clean=False):
48+
def get_test_file_full_path(ioclass, filename=None, directory=None, clean=False):
5049
"""
5150
Get the full path for a file of the given filename.
5251

0 commit comments

Comments
 (0)