Skip to content

Commit

Permalink
removed slots=True as Python 3.6 workaround: python-attrs/attrs#313
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTimperley committed Oct 12, 2019
1 parent f44c5da commit 5bb70af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dockerblade/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
T = TypeVar('T', str, bytes)


@attr.s(slots=True, auto_attribs=True, frozen=True)
@attr.s(auto_attribs=True, frozen=True)
class CompletedProcess(Generic[T]):
"""Stores the result of a completed process.
Expand Down

0 comments on commit 5bb70af

Please sign in to comment.