Merge pull request #15 from cerc-io/dboreham/more-lint-fixes

More lint fixes
This commit is contained in:
2022-10-06 06:52:43 -06:00
committed by GitHub
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ def command(ctx, include, exclude):
local_stack = ctx.obj.local_stack
if local_stack:
dev_root_path = default = os.getcwd()[0:os.getcwd().rindex("stack-orchestrator")]
dev_root_path = os.getcwd()[0:os.getcwd().rindex("stack-orchestrator")]
print(f'Local stack dev_root_path (CERC_REPO_BASE_DIR) overridden to: {dev_root_path}')
else:
dev_root_path = os.path.expanduser(config("CERC_REPO_BASE_DIR", default="~/cerc"))
+1 -1
View File
@@ -73,7 +73,7 @@ def command(ctx, check_only, pull, branches_file):
local_stack = ctx.obj.local_stack
if local_stack:
dev_root_path = default = os.getcwd()[0:os.getcwd().rindex("stack-orchestrator")]
dev_root_path = os.getcwd()[0:os.getcwd().rindex("stack-orchestrator")]
print(f'Local stack dev_root_path (CERC_REPO_BASE_DIR) overridden to: {dev_root_path}')
else:
dev_root_path = os.path.expanduser(config("CERC_REPO_BASE_DIR", default="~/cerc"))
+1
View File
@@ -29,6 +29,7 @@ class Options(object):
self.dry_run = dry_run
self.local_stack = local_stack
@click.group(context_settings=CONTEXT_SETTINGS)
@click.option('--quiet', is_flag=True, default=False)
@click.option('--verbose', is_flag=True, default=False)