We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56e8630 commit 193c8abCopy full SHA for 193c8ab
mxcubecore/queue_entry/base_queue_entry.py
@@ -45,7 +45,6 @@
45
)
46
from mxcubecore.utils import mxlims as mxutils
47
48
-
49
if TYPE_CHECKING:
50
from mxlims.pydantic.objects.MxExperiment import MxExperiment
51
@@ -393,7 +392,7 @@ def post_execute(self):
393
392
mxlims_job = self._mxlims_job
394
if mxlims_job is not None:
395
self._mxlims_job = None
396
- mxlims_job.end_time = datetime.now()
+ mxlims_job.end_time = datetime.now() # noqa: DTZ005
397
mxutils.export_mxjob(mxlims_job, None)
398
399
# self._set_background_color()
0 commit comments