Skip to content

Commit

Permalink
Fix E401 multiple imports on one lines
Browse files Browse the repository at this point in the history
  • Loading branch information
kwankyu committed Oct 23, 2023
1 parent 07a2afd commit c9f939b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/sage/misc/persist.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,8 @@ def unpickle_all(target, debug=False, run_test_suite=False):
Successfully unpickled 1 objects.
Failed to unpickle 0 objects.
"""
import os.path, tarfile
import os.path
import tarfile
ok_count = 0
fail_count = 0
Expand Down

0 comments on commit c9f939b

Please sign in to comment.