Prepend instead of append

This commit is contained in:
Greg Hellings
2023-12-29 23:49:26 -06:00
parent e099a41344
commit 856b9ade04
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env xonsh #!/usr/bin/env xonsh
from pathlib import Path from pathlib import Path
import sys import sys
sys.path.append(str(Path(__file__).parent / "lib")) sys.path.insert(0, str(Path(__file__).parent / "lib"))
from support import Support, BASE from support import Support, BASE
import time import time
import json import json