mirror of
https://github.com/littlefs-project/littlefs.git
synced 2025-12-01 12:20:02 +00:00
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:
@ -27,6 +27,7 @@ import shlex
|
||||
import shutil
|
||||
import signal
|
||||
import subprocess as sp
|
||||
import sys
|
||||
import threading as th
|
||||
import time
|
||||
import toml
|
||||
|
||||
Reference in New Issue
Block a user