From d077663e2cd8ab311e868a5e7108b4f2cefe0631 Mon Sep 17 00:00:00 2001 From: AdalbertoMoz Date: Wed, 19 Jun 2024 10:53:11 -0600 Subject: [PATCH] Fix: Linting and formatting --- copy_staging_db_to_review_app.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/copy_staging_db_to_review_app.py b/copy_staging_db_to_review_app.py index 0c08a94db0a..c56acad459b 100644 --- a/copy_staging_db_to_review_app.py +++ b/copy_staging_db_to_review_app.py @@ -1,9 +1,11 @@ import tempfile from time import sleep + from tasks import PLATFORM_ARG STAGING_APP = "foundation-mofostaging-net" + def execute_command(ctx, command: str, custom_error: str = ""): try: result = ctx.run(command, hide=False, warn=True, **PLATFORM_ARG)