Skip to content

Commit

Permalink
(ref) lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MementoRC committed Mar 9, 2024
1 parent 0a83b54 commit cc844db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
_bdist_wheel = None

sys.path.append(os.path.abspath(os.path.dirname(__file__)))
from setup_support import absolute, build_flags, detect_dll, has_system_lib # noqa: E402
from setup_support import absolute, build_flags, detect_dll, has_system_lib

BUILDING_FOR_WINDOWS = detect_dll()

Expand Down
2 changes: 1 addition & 1 deletion setup_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def subprocess_run(cmd, *, debug=False):
logging.info(f'Command log:\n{result.stderr}')

return result.stdout.strip()

except subprocess.CalledProcessError as e:
logging.error(f'An error occurred during the command execution: {e}')
logging.error(f'Command log:\n{e.stderr}')
Expand Down

0 comments on commit cc844db

Please sign in to comment.