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
The property ExperimentData.completion_times (here) returns None because of outdated string.
ExperimentData.completion_times
Change 'COMPLETED' to 'finished' inside the property. Since
exp_data.jobs()[0].time_per_step()
gives: {'created': datetime.datetime(2023, 6, 21, 11, 14, 3, 657850, tzinfo=tzlocal()), 'finished': datetime.datetime(2023, 6, 21, 11, 15, 40, 728000, tzinfo=tzlocal()), 'running': datetime.datetime(2023, 6, 21, 11, 14, 5, 58000, tzinfo=tzlocal())}
{'created': datetime.datetime(2023, 6, 21, 11, 14, 3, 657850, tzinfo=tzlocal()), 'finished': datetime.datetime(2023, 6, 21, 11, 15, 40, 728000, tzinfo=tzlocal()), 'running': datetime.datetime(2023, 6, 21, 11, 14, 5, 58000, tzinfo=tzlocal())}
The text was updated successfully, but these errors were encountered:
gadial
Successfully merging a pull request may close this issue.
Informations
What is the current behavior?
The property
ExperimentData.completion_times
(here)returns None because of outdated string.
Steps to reproduce the problem
What is the expected behavior?
Suggested solutions
Change 'COMPLETED' to 'finished' inside the property. Since
exp_data.jobs()[0].time_per_step()
gives:
{'created': datetime.datetime(2023, 6, 21, 11, 14, 3, 657850, tzinfo=tzlocal()), 'finished': datetime.datetime(2023, 6, 21, 11, 15, 40, 728000, tzinfo=tzlocal()), 'running': datetime.datetime(2023, 6, 21, 11, 14, 5, 58000, tzinfo=tzlocal())}
The text was updated successfully, but these errors were encountered: