Skip to content

Commit ddde636

Browse files
committed
relink.py: Move import of sys.
1 parent 9d8624d commit ddde636

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

relink.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""
66

77
import os
8+
import sys
89
import pwd
910
import argparse
1011
import logging
@@ -141,9 +142,7 @@ def parse_arguments():
141142
return parser.parse_args()
142143

143144
if __name__ == '__main__':
144-
# Configure logging to display INFO and above to console (stdout)
145-
import sys
146-
# --- Configuration ---
145+
147146
args = parse_arguments()
148147

149148
# Configure logging based on verbosity flags

0 commit comments

Comments
 (0)