Skip to content

Commit 7fe2ad2

Browse files
committed
fix lint
1 parent d9e0de0 commit 7fe2ad2

File tree

1 file changed

+1
-1
lines changed
  • _delphi_utils_python/delphi_utils

1 file changed

+1
-1
lines changed

_delphi_utils_python/delphi_utils/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def delete_move_files():
116116
# Double-checking that export-dir is not delivery-dir
117117
# Throw assertion error if delivery_dir or export_dir is unspecified
118118
assert(delivery_dir is not None and export_dir is not None)
119-
assert(export_dir != delivery_dir)
119+
assert export_dir != delivery_dir
120120
files_to_delete = os.listdir(export_dir)
121121
for file_name in files_to_delete:
122122
if file_name.endswith(".csv") or file_name.endswith(".CSV"):

0 commit comments

Comments
 (0)