Removed sys in 'from os import sys, path'

This commit is contained in:
Logstor
2025-11-20 18:24:44 +00:00
committed by Chris Hennes
parent d2100466d2
commit 3d24580646
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import sys
from os import sys, path
from os import path
# Actual code generation is done in Base/param_utils.py.

View File

@@ -21,7 +21,7 @@
"""Auto code generator for overlay widgets related parameters in Preferences/View"""
import cog
import inspect, sys
from os import sys, path
from os import path
# import Tools/params_utils.py
sys.path.append(path.join(path.dirname(path.dirname(path.abspath(__file__))), "Tools"))

View File

@@ -20,7 +20,7 @@
# ***************************************************************************
"""Auto code generator for preference page of Display/UI"""
import cog, sys
from os import sys, path
from os import path
# import Tools/params_utils.py
sys.path.append(

View File

@@ -20,7 +20,7 @@
# ***************************************************************************
"""Auto code generator for parameters in Preferences/TreeView"""
import sys
from os import sys, path
from os import path
# import Tools/params_utils.py
sys.path.append(path.join(path.dirname(path.dirname(path.abspath(__file__))), "Tools"))