Skip to content

Commit a7a23ac

Browse files
author
Shubham Chaturvedi
committed
CI
1 parent f018867 commit a7a23ac

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/aws_encryption_sdk_cli/internal/io_handling.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,7 @@ def process_single_file(self, stream_args, source, destination):
374374
operation_result = OperationResult.FAILED
375375
raise
376376
finally:
377-
# pylint: disable=no-member, used-before-assignment
378-
if operation_result.needs_cleanup and destination != "-":
377+
if operation_result.needs_cleanup and destination != "-": # pylint:disable=no-member,used-before-assignment
379378
_LOGGER.warning("Operation failed: deleting output file: %s", destination)
380379
try:
381380
os.remove(destination)

0 commit comments

Comments
 (0)