We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b438739 commit d22e763Copy full SHA for d22e763
pytype/abstract/_classes.py
@@ -185,8 +185,7 @@ def get_inner_classes(self):
185
continue
186
if value.official_name is None or (
187
self.official_name and
188
- value.official_name.startswith(f"{self.official_name}.")) or (
189
- not self.ctx.options.enable_nested_classes and value != self):
+ value.official_name.startswith(f"{self.official_name}.")):
190
inner_classes.append(value)
191
return inner_classes
192
0 commit comments