Skip to content

Commit

Permalink
Excludes rrule_kwargs from Repeating.__repr__.
Browse files Browse the repository at this point in the history
It's primarily an implementation detail.
  • Loading branch information
bethard committed Sep 27, 2024
1 parent 6d38dc3 commit e85d6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/python/scate.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ class Repeating(Offset):
range: Unit = None
value: int = dataclasses.field(default=None, kw_only=True)
n_units: int = dataclasses.field(default=1, kw_only=True)
rrule_kwargs: dict = dataclasses.field(default_factory=dict, kw_only=True)
rrule_kwargs: dict = dataclasses.field(default_factory=dict, kw_only=True, repr=False)
span: (int, int) = None

def __post_init__(self):
Expand Down

0 comments on commit e85d6c2

Please sign in to comment.