Skip to content

Commit c6e89c1

Browse files
relikdgtsystem
authored andcommitted
ref: make def private
1 parent c24384c commit c6e89c1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

remotezip.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,10 +263,10 @@ def _list_files(url, support_suffix_range, filenames):
263263
zinfo = zip.getinfo(fname)
264264
dt = datetime(*zinfo.date_time)
265265
data.append((zinfo.file_size, dt.strftime('%Y-%m-%d %H:%M:%S'), zinfo.filename))
266-
printTable(data, ('Length', 'DateTime', 'Name'), '><<')
266+
_printTable(data, ('Length', 'DateTime', 'Name'), '><<')
267267

268268

269-
def printTable(data, header, align):
269+
def _printTable(data, header, align):
270270
# get max col width & prepare formatting string
271271
col_w = [len(col) for col in header]
272272
for row in data:

0 commit comments

Comments
 (0)