We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FileNotFoundError
gokart.build()
The following code with error in run() will exit with FileNotFoundError instead of NotImplementedError.
run()
NotImplementedError
class Example(gokart.TaskOnKart): def run(self): raise NotImplementedError("not implemented") task = Example(rerun=True) gokart.build(task) >>> FileNotFoundError: [Errno 2] No such file or directory: './resources/__main__/Example_8441c59b5ce0113396d53509f19371fb.pkl'
The text was updated successfully, but these errors were encountered:
similer: #224, #209
Sorry, something went wrong.
#237 must have solved this issue :) @mski-iksm
No branches or pull requests
The following code with error in
run()
will exit withFileNotFoundError
instead ofNotImplementedError
.The text was updated successfully, but these errors were encountered: