Skip to content

Commit 02cbce7

Browse files
committed
Linting 4
1 parent 89dafe4 commit 02cbce7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sebs/gcp/gcp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def create_workflow(
446446
},
447447
)
448448
)
449-
ret = create_req.execute()
449+
create_req.execute()
450450
self.logging.info(f"Map workflow {map_id} has been created!")
451451

452452
full_workflow_name = GCP.get_full_workflow_name(
@@ -475,7 +475,7 @@ def create_workflow(
475475
},
476476
)
477477
)
478-
ret = create_req.execute()
478+
create_req.execute()
479479
self.logging.info(f"Workflow {workflow_name} has been created!")
480480

481481
workflow = GCPWorkflow(
@@ -567,7 +567,7 @@ def update_workflow(self, workflow: Workflow, code_package: CodePackage):
567567
},
568568
)
569569
)
570-
ret = patch_req.execute()
570+
patch_req.execute()
571571
self.logging.info("Published new map workflow code.")
572572

573573
full_workflow_name = GCP.get_full_workflow_name(

sebs/local/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from sebs.local.config import LocalConfig
1212
from sebs.local.storage import Minio
1313
from sebs.local.function import LocalFunction
14-
from sebs.faas.benchmark import Benchmark, Function, ExecutionResult, Trigger
14+
from sebs.faas.benchmark import Benchmark, Function, Workflow, ExecutionResult, Trigger
1515
from sebs.faas.storage import PersistentStorage
1616
from sebs.faas.system import System
1717
from sebs.code_package import CodePackage

0 commit comments

Comments
 (0)