Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
zhPavel committed Jul 21, 2023
1 parent 2301acd commit 3df627c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples/extended_usage/generic_classes_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ class MinMax(Generic[T]):
data = {'min': 10, 'max': 20}
min_max = retort.load(data, MinMax[int])
assert min_max == MinMax(min=10, max=20)
assert retort.dump(min_max, MinMax[int])
assert retort.dump(min_max, MinMax[int]) == data

0 comments on commit 3df627c

Please sign in to comment.