Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichFroebel committed Oct 28, 2023
1 parent 8c08b7b commit 9dee8e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ class ConfigurationTestCase(TestCase):
@property
def example_json(self) -> dict[str, dict[str, str | int | dict[str, str]]]:
with open(self.example_configuration_path) as fd:
return cast(Dict[str, Dict[str, Union[str, int, Dict[str, str]]]], json.load(fd))
return cast(
Dict[str, Dict[str, Union[str, int, Dict[str, str]]]], json.load(fd)
)

def test_from_json(self) -> None:
with NamedTemporaryFile(suffix=".json", mode="w+t") as json_file:
Expand Down

0 comments on commit 9dee8e8

Please sign in to comment.