Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def main():
print(f"Set up test store...")
print("Set up test store...")
store = TestStore(url=API_URL)
discover_ctx = TestContextStored(store)
setup_logging()
Expand Down
6 changes: 3 additions & 3 deletions examples/test_ctx_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test_cmdline_parser(ctx):
args, _ = parser.parse_known_args()

# Log the parsed arguments
ctx.info(f"==== Parsed arguments:")
ctx.info("==== Parsed arguments:")
for key, value in vars(args).items():
ctx.info(f" {key}: {value}")

Expand All @@ -33,7 +33,7 @@ def test_with_ctx_args(ctx):
args, _ = parser.parse_known_args()

# Log the parsed arguments
ctx.debug(f"Parsed arguments:")
ctx.debug("Parsed arguments:")
for key, value in vars(args).items():
ctx.debug(f" {key}: {value}")

Expand Down Expand Up @@ -80,7 +80,7 @@ def test_file_operations(ctx):
args = parser.parse_args(cli_args)

# Log the parsed arguments
ctx.debug(f"File operation with arguments:")
ctx.debug("File operation with arguments:")
for key, value in vars(args).items():
ctx.debug(f" {key}: {value}")

Expand Down
4 changes: 2 additions & 2 deletions examples/test_vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def vcs_helper_function(ctx, file_path):
# VCSInterface implementations
vcs_helper = VCSHelper()

ctx.info(f"VCS Test")
ctx.info(f"=============")
ctx.info("VCS Test")
ctx.info("=============")
ctx.info(f"Testing file: {current_file}")

# Detect VCS
Expand Down