Skip to content

Commit

Permalink
Fix: Import sys in all files
Browse files Browse the repository at this point in the history
The issue #133 gave me the hint that i had sys missing after the last compile compatible fix
  • Loading branch information
marvin1099 authored Oct 15, 2024
1 parent 8306aa3 commit c6c8223
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions consts.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3

import os
import sys

from corenodep import (
load_conf_setting,
Expand Down
1 change: 1 addition & 0 deletions constutils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3

import os
import sys
import pwd
import shutil
import subprocess
Expand Down
1 change: 1 addition & 0 deletions corenodep.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3

import os
import sys
import configparser

if getattr(sys, "frozen", False):
Expand Down

0 comments on commit c6c8223

Please sign in to comment.