Skip to content

Commit

Permalink
fix: rename also functions calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Feb 22, 2024
1 parent de9d8d5 commit e59c75c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qgis_deployment_toolbelt/jobs/job_environment_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ def run(self) -> None:
"""Apply environment variables from dictionary to the system."""

if opersys == "win32":
self.runWin32()
self.run_win32()

elif opersys == "linux":
self.runLinux()
self.run_linux()

else:
logger.debug(
Expand Down

0 comments on commit e59c75c

Please sign in to comment.