From 63cf05a3f1e1240da1b1322aa6e5b09b8dc73e1e Mon Sep 17 00:00:00 2001 From: Fabio Buso Date: Mon, 16 Oct 2023 12:04:29 +0200 Subject: [PATCH] Fix formatting --- python/hopsworks/job.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/python/hopsworks/job.py b/python/hopsworks/job.py index 14b3c520e..168ee9ef9 100644 --- a/python/hopsworks/job.py +++ b/python/hopsworks/job.py @@ -193,7 +193,12 @@ def delete(self): """ self._job_api._delete(self) - def schedule(self, cron_expression: str, start_time: datetime = None, end_time: datetime = None): + def schedule( + self, + cron_expression: str, + start_time: datetime = None, + end_time: datetime = None, + ): """Schedule the execution of the job. If a schedule for this job already exists, the method updates it.