Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef-Friedrich committed Jan 4, 2024
1 parent e194846 commit d10e8ae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 6 additions & 2 deletions mscxyz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,11 +241,15 @@ def execute(cli_args: typing.Sequence[str] | None = None) -> None:
score = Score(file)

if args.style_list_3:
style_names = importlib.import_module("mscxyz.style_names", package=None)
style_names = importlib.import_module(
"mscxyz.style_names", package=None
)
style_names.list_styles(3)

if args.style_list_4:
style_names = importlib.import_module("mscxyz.style_names", package=None)
style_names = importlib.import_module(
"mscxyz.style_names", package=None
)
style_names.list_styles(3)

if args.style_set:
Expand Down
2 changes: 0 additions & 2 deletions tests/_test_real-binary.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,3 @@ def test_set_style() -> None:
)
assert Path(tmp).exists()
open_file(tmp)


0 comments on commit d10e8ae

Please sign in to comment.