Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
dylwil3 committed Jan 16, 2025
1 parent fc2bb13 commit d527a5b
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ redefined_slots_in_subclass.py:6:18: PLW0244 Redefined slots ['a'] in subclass
5 | class Subclass(Base):
6 | __slots__ = ("a", "d") # [redefined-slots-in-subclass]
| ^^^ PLW0244
7 |
8 | class Grandparent:
|


redefined_slots_in_subclass.py:17:23: PLW0244 Redefined slots ['a'] in subclass
|
16 | class Child(Parent):
17 | __slots__ = ("c", "a")
| ^^^ PLW0244
|

0 comments on commit d527a5b

Please sign in to comment.