mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Fix PyOverrideTest - __instancecheck__ typeshed was updated
GitOrigin-RevId: 847d3224980e659e30e577317ae4fc3286157157
This commit is contained in:
committed by
intellij-monorepo-bot
parent
5326d60a51
commit
e479125579
@@ -1,3 +1,3 @@
|
||||
class MyType(type):
|
||||
def __instancecheck__(self, __instance):
|
||||
<selection>return super().__instancecheck__(__instance)</selection>
|
||||
def __instancecheck__(self, instance, /):
|
||||
<selection>return super().__instancecheck__(instance)</selection>
|
||||
|
||||
Reference in New Issue
Block a user