From 5f560bb53d4cf958efde67fbd6de57ee2d947b99 Mon Sep 17 00:00:00 2001 From: Carina Ursu Date: Fri, 20 Oct 2023 12:34:20 -0700 Subject: [PATCH] fix: usage snippet indentation Signed-off-by: Carina Ursu --- .../ExecutionDetails/ExecutionNodeURL.tsx | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/packages/console/src/components/Executions/ExecutionDetails/ExecutionNodeURL.tsx b/packages/console/src/components/Executions/ExecutionDetails/ExecutionNodeURL.tsx index f4d64506f..5d6577c59 100644 --- a/packages/console/src/components/Executions/ExecutionDetails/ExecutionNodeURL.tsx +++ b/packages/console/src/components/Executions/ExecutionDetails/ExecutionNodeURL.tsx @@ -97,18 +97,18 @@ export const ExecutionNodeURL: React.FC<{ const code = isHttps ? // https snippet `from flytekit.remote.remote import FlyteRemote - from flytekit.configuration import Config - remote = FlyteRemote( - Config.for_endpoint("${window.location.host}"), - ) - remote.get("${dataSourceURI}")` +from flytekit.configuration import Config +remote = FlyteRemote( + Config.for_endpoint("${window.location.host}"), +) +remote.get("${dataSourceURI}")` : // http snippet `from flytekit.remote.remote import FlyteRemote - from flytekit.configuration import Config - remote = FlyteRemote( - Config.for_endpoint("${window.location.host}", True), - ) - remote.get("${dataSourceURI}")`; +from flytekit.configuration import Config +remote = FlyteRemote( + Config.for_endpoint("${window.location.host}", True), +) +remote.get("${dataSourceURI}")`; const toggleExpanded = () => { setExpanded(!expanded);