Skip to content

Commit

Permalink
Lint Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
salahkareem committed Nov 13, 2024
1 parent c515076 commit 8ac1c6e
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions plugins/workflow_editor/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,20 +113,17 @@ def render(self, data: Mapping, errors: dict, valid: bool):
qhanaPluginRegistryURL=current_app.config.get(
"PLUGIN_REGISTRY_URL", "http://localhost:5006"
),

# Data flow plugin configuration
configurationsEndpoint=current_app.config.get(
"SERVICE_DATA_CONFIG", "http://localhost:8000/service-task"
),

# OpenTOSCA plugin configuration
opentoscaEndpoint=current_app.config.get(
"OPENTOSCA_ENDPOINT", "http://localhost:1337/csars"
),
wineryEndpoint=current_app.config.get(
"WINERY_ENDPOINT", "http://localhost:8080/winery"
),

# Pattern plugin configuration
patternAtlasEndpoint=current_app.config.get(
"PATTERN_ATLAS_ENDPOINT", "http://localhost:8080/pattern-atlas"
Expand All @@ -137,7 +134,6 @@ def render(self, data: Mapping, errors: dict, valid: bool):
qcAtlasEndpoint=current_app.config.get(
"QC_ATLAS_ENDPOINT", "http://localhost:8080/qc-atlas"
),

# QuantME plugin configuration
nisqAnalyzerEndpoint=current_app.config.get(
"NISQ_ANALYZER_ENDPOINT", "http://localhost:8080/nisq-analyzer"
Expand All @@ -156,17 +152,16 @@ def render(self, data: Mapping, errors: dict, valid: bool):
),
qiskitRuntimeHandlerEndpoint=current_app.config.get(
"QISKIT_RUNTIME_HANDLER_ENDPOINT",
"http://localhost:8080/qiskit-runtime-handler"
"http://localhost:8080/qiskit-runtime-handler",
),
awsRuntimeHandlerEndpoint=current_app.config.get(
"AWS_RUNTIME_HANDLER_ENDPOINT",
"http://localhost:8080/aws-runtime-handler"
"http://localhost:8080/aws-runtime-handler",
),
transformationFrameworkEndpoint=current_app.config.get(
"TRANSFORMATION_FRAMEWORK_ENDPOINT",
"http://localhost:8080/transformation-framework"
"http://localhost:8080/transformation-framework",
),

# Editor Configuration
camundaEndpoint=current_app.config.get(
"CAMUNDA_ENDPOINT", "http://localhost:8080/camunda"
Expand Down Expand Up @@ -200,7 +195,7 @@ def render(self, data: Mapping, errors: dict, valid: bool):
uploadFileName=current_app.config.get(
"UPLOAD_FILE_NAME", "quantum-workflow-model"
),
uploadBranchName=current_app.config.get("UPLOAD_BRANCH_NAME", "")
uploadBranchName=current_app.config.get("UPLOAD_BRANCH_NAME", ""),
)
)

Expand Down

0 comments on commit 8ac1c6e

Please sign in to comment.