Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

exit is not imported in lightning/pytorch/trainer/call.py #20666

Open
galtay-tempus opened this issue Mar 24, 2025 · 0 comments
Open

exit is not imported in lightning/pytorch/trainer/call.py #20666

galtay-tempus opened this issue Mar 24, 2025 · 0 comments
Labels
bug Something isn't working needs triage Waiting to be triaged by maintainers ver: 2.5.x

Comments

@galtay-tempus
Copy link

Bug description

keyboard interrupt a run and you will end up here with a, NameError: name 'exit' is not defined

https://github.com/Lightning-AI/pytorch-lightning/blob/master/src/lightning/pytorch/trainer/call.py#L65

likely just needs
from sys import exit
or
import sys
sys.exit(1)

What version are you seeing the problem on?

v2.5

How to reproduce the bug

Error messages and logs

# Error messages and logs here please

Environment

Current environment
#- PyTorch Lightning Version (e.g., 2.5.0):
#- PyTorch Version (e.g., 2.5):
#- Python version (e.g., 3.12):
#- OS (e.g., Linux):
#- CUDA/cuDNN version:
#- GPU models and configuration:
#- How you installed Lightning(`conda`, `pip`, source):

More info

No response

@galtay-tempus galtay-tempus added bug Something isn't working needs triage Waiting to be triaged by maintainers labels Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working needs triage Waiting to be triaged by maintainers ver: 2.5.x
Projects
None yet
Development

No branches or pull requests

1 participant