Skip to content

Commit

Permalink
not actually using auto_attribs anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
richardsheridan committed Oct 5, 2021
1 parent 9b3603a commit af5dd7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trio_parallel/_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def check_non_negative(instance, attribute, value):
raise ValueError(f"{attribute} must be non-negative, was {value}")


@attr.s(auto_attribs=True, slots=True, eq=False)
@attr.s(slots=True, eq=False)
class WorkerContext(metaclass=NoPublicConstructor):
"""A representation of a context where workers have a custom configuration.
Expand Down

0 comments on commit af5dd7c

Please sign in to comment.