Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ess/reduce/data/_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def __post_init__(self, unzip: bool) -> None:
if self.extractor is not None and unzip:
raise TypeError("Set either the 'unzip' argument or 'extractor', not both.")
if self.extractor is None and unzip:
super().__setattr__("extractor", "unzip")
object.__setattr__(self, "extractor", "unzip")

@classmethod
def from_pooch_string(cls, pooch_string: str) -> Entry:
Expand Down
Loading