@@ -380,8 +380,7 @@ def monitor(
380380 if not success :
381381 sys .exit (1 )
382382 except Exception as exc :
383- anonymous_tracking .track_cli_exception (
384- Command .MONITOR , exc , ctx .command .name )
383+ anonymous_tracking .track_cli_exception (Command .MONITOR , exc , ctx .command .name )
385384 raise
386385
387386
@@ -478,8 +477,7 @@ def report(
478477 if not generated_report_successfully :
479478 sys .exit (1 )
480479 except Exception as exc :
481- anonymous_tracking .track_cli_exception (
482- Command .REPORT , exc , ctx .command .name )
480+ anonymous_tracking .track_cli_exception (Command .REPORT , exc , ctx .command .name )
483481 raise
484482
485483
@@ -774,7 +772,7 @@ def debug(ctx, profiles_dir):
774772@click .pass_context
775773def dbt_init (ctx ):
776774 """
777- Initializes the Elementary internal dbt project by installing its dbt deps.
775+ Initializes the Elementary internal dbt project by installing its dbt deps.
778776 Run this command after installing EDR as part of builds or CI/CD pipelines when the target
779777 environment does not have write permissions on disk or does not have internet connection.
780778 This command is not needed in most cases as the dbt deps are installed automatically when running `edr monitor`.
@@ -786,9 +784,7 @@ def dbt_init(ctx):
786784 success = dbtinit .setup_internal_dbt_packages ()
787785 if not success :
788786 sys .exit (1 )
789- click .echo (
790- "Elementary internal dbt project has been initialized successfully. "
791- )
787+ click .echo ("Elementary internal dbt project has been initialized successfully. " )
792788 anonymous_tracking .track_cli_end (Command .DEBUG , None , ctx .command .name )
793789
794790
0 commit comments