scripts: Added missing sys imports

Unfortunately the import sys in the argparse block was hiding missing
sys imports.

The mistake was assuming the import sys in Python would limit the scope
to that if block, but Python's late binding strikes again...
This commit is contained in:
Christopher Haster
2024-12-28 00:59:44 -06:00
parent 0adec7f15c
commit 361cd3fec0
14 changed files with 14 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ import os
import re
import shlex
import subprocess as sp
import sys
OBJDUMP_PATH = ['objdump']