Skip to content

Commit

Permalink
fix some fstring formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Feb 27, 2025
1 parent 3b44264 commit be5170e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "malcolm-test"
version = "0.9.4"
version = "0.9.5"
authors = [
{ name="Seth Grover", email="[email protected]" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/maltest/maltest.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def main():
metavar='<string>',
type=str,
default=os.getenv('MALCOLM_TEST_PATH', os.path.join(script_path, 'tests')),
help=f'Path containing test definitions (e.g., {os.path.join(script_path, 'tests')})',
help=f"Path containing test definitions (e.g., {os.path.join(script_path, 'tests')})",
)
testArgGroup.add_argument(
'-a',
Expand Down
2 changes: 1 addition & 1 deletion src/maltest/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def __init__(
self.provisionEnvArgs.extend(
[
'--set',
f"env.{varName.removeprefix("MALCOLM_")}={varVal}",
f"env.{varName.removeprefix('MALCOLM_')}={varVal}",
]
)

Expand Down

0 comments on commit be5170e

Please sign in to comment.