Skip to content

Commit

Permalink
skip: multi-line string to avoid noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
NohaIhab committed Nov 29, 2024
1 parent 2beaaed commit a73490f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion charms/argo-controller/src/components/pebble_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
logger = logging.getLogger(__name__)

ARGO_CONTROLLER_CONFIGMAP = "argo-workflow-controller-configmap"
ARGO_KEYFORMAT = "artifacts/{{workflow.name}}/{{workflow.creationTimestamp.Y}}/{{workflow.creationTimestamp.m}}/{{workflow.creationTimestamp.d}}/{{pod.name}}" # noqa E501
ARGO_KEYFORMAT = (
"artifacts/{{workflow.name}}/"
"{{workflow.creationTimestamp.Y}}/"
"{{workflow.creationTimestamp.m}}/"
"{{workflow.creationTimestamp.d}}/"
"{{pod.name}}"
)
EXECUTOR_IMAGE_CONFIG_NAME = "executor-image"
LIVENESS_PROBE_PORT = "6060"
METRICS_PORT = "9090"
Expand Down

0 comments on commit a73490f

Please sign in to comment.