diff --git a/actions/update-development-dependencies/update_development_dependencies.py b/actions/update-development-dependencies/update_development_dependencies.py index c48c50d0..154e540a 100644 --- a/actions/update-development-dependencies/update_development_dependencies.py +++ b/actions/update-development-dependencies/update_development_dependencies.py @@ -283,6 +283,7 @@ def main() -> None: if __name__ == "__main__": + print("\n__main__\n") # Handle GitHub Actions environment variables # See https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#default-environment-variables if os.getenv("GITHUB_ACTION"): @@ -313,4 +314,5 @@ def main() -> None: sys.argv.extend(script_args) # Run the main function + print("\nmain()\n") main()