Skip to content

Commit

Permalink
Linting 4
Browse files Browse the repository at this point in the history
  • Loading branch information
lbrndnr committed Apr 26, 2022
1 parent 89dafe4 commit 667d499
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sebs/gcp/gcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def create_workflow(
},
)
)
ret = create_req.execute()
create_req.execute()
self.logging.info(f"Workflow {workflow_name} has been created!")

workflow = GCPWorkflow(
Expand Down Expand Up @@ -567,7 +567,7 @@ def update_workflow(self, workflow: Workflow, code_package: CodePackage):
},
)
)
ret = patch_req.execute()
patch_req.execute()
self.logging.info("Published new map workflow code.")

full_workflow_name = GCP.get_full_workflow_name(
Expand Down
2 changes: 1 addition & 1 deletion sebs/local/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from sebs.local.config import LocalConfig
from sebs.local.storage import Minio
from sebs.local.function import LocalFunction
from sebs.faas.benchmark import Benchmark, Function, ExecutionResult, Trigger
from sebs.faas.benchmark import Benchmark, Function, Workflow, ExecutionResult, Trigger
from sebs.faas.storage import PersistentStorage
from sebs.faas.system import System
from sebs.code_package import CodePackage
Expand Down

0 comments on commit 667d499

Please sign in to comment.