Skip to content

Commit fcfc729

Browse files
committed
Small update
1 parent 8723b8a commit fcfc729

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyneofile/pyfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7917,14 +7917,14 @@ def PackNeoFileFromInFile(infile, outfile, fmttype="auto", compression="auto", c
79177917
def NeoFileArrayValidate(infile, verbose=False):
79187918
# ---------- Input handling ----------
79197919
if isinstance(infile, dict):
7920-
listarrayfileslist = [infile]
7920+
listarrayfiles = [infile]
79217921
elif isinstance(infile, list):
7922-
listarrayfileslist = infile
7922+
listarrayfiles = infile
79237923
else:
79247924
if (infile != "-" and not isinstance(infile, (bytes, bytearray, memoryview)) # bytes is str on Py2
79257925
and not hasattr(infile, "read") and not hasattr(infile, "write")):
79267926
infile = RemoveWindowsPath(infile)
7927-
listarrayfileslist = ArchiveFileToArray(
7927+
listarrayfiles = ArchiveFileToArray(
79287928
infile, fmttype, filestart, 0, 0,
79297929
False, True, False, True, formatspecs, saltkey, seektoend, returnfp
79307930
)

0 commit comments

Comments
 (0)