Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
style: black no like double quotes in f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
trumully committed Apr 17, 2024
1 parent db570bb commit acc18e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/artipy/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ArtifactSetData:
def make_artifact_sets() -> Iterator[ArtifactSetData]:
for key in ArtifactSet:
data = json_to_dict(
f"artifacts/artifact_{key.name.title().replace("_", "")}_gen.json"
f"artifacts/artifact_{key.name.title().replace('_', '')}_gen.json" # pylint: disable=inconsistent-quotes
)
data = {camel_to_snake_case(k): v for k, v in data.items()}
yield ArtifactSetData(**data)
Expand Down

0 comments on commit acc18e0

Please sign in to comment.