Skip to content

Commit 866768d

Browse files
committed
Fixed flake8 linting error
1 parent 1028450 commit 866768d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/mas/devops/tekton.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,11 @@ def enablePipelinesConsolePlugin(dynClient: DynamicClient) -> bool:
215215
pluginName = "pipelines-console-plugin"
216216

217217
if pluginName in currentPlugins:
218-
logger.info(f"Pipelines console plugin is already enabled")
218+
logger.info("Pipelines console plugin is already enabled")
219219
return True
220220

221221
# Enable the plugin by patching the Console operator
222-
logger.info(f"Enabling Pipelines console plugin...")
222+
logger.info("Enabling Pipelines console plugin...")
223223

224224
# Create patch to add plugin to the list
225225
updatedPlugins = list(currentPlugins) + [pluginName]
@@ -235,7 +235,7 @@ def enablePipelinesConsolePlugin(dynClient: DynamicClient) -> bool:
235235
content_type="application/merge-patch+json"
236236
)
237237

238-
logger.info(f"Successfully enabled Pipelines console plugin")
238+
logger.info("Successfully enabled Pipelines console plugin")
239239
return True
240240

241241
except NotFoundError as e:

0 commit comments

Comments
 (0)