Skip to content

Commit 8677049

Browse files
little syntax fix
1 parent 9be85ae commit 8677049

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modeled/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def abcnames():
167167
# which leads to endless recursion.
168168
# and anyway: abstractmethods should always be explicitly defined!
169169
for name in set(chain(dir(type(cls)),
170-
*(c.__dict__ for c in cls.mro())):
170+
*(c.__dict__ for c in cls.mro()))):
171171
if name == '__abstractmethods__':
172172
# another way to avoid recursion :)
173173
continue

0 commit comments

Comments
 (0)