Skip to content

Commit a17e0a9

Browse files
committed
chore(pathtools): remove redundant import of os in join_files_with_channel_suffix
1 parent 6308fbe commit a17e0a9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/imcflibs/pathtools.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Helper functions to work with filenames, directories etc."""
22

3+
import os
34
import os.path
45
import platform
56
import re
@@ -409,8 +410,6 @@ def join_files_with_channel_suffix(files, nchannels):
409410
list of str
410411
Ordered list of filenames (originals then suffixed copies).
411412
"""
412-
import os
413-
414413
if not files:
415414
return ""
416415
try:

0 commit comments

Comments
 (0)