Describe the style change
Nested classes in typing stubs should have blank lines between them.
Examples in the current Black style
class A:
class B:
attribute: int
class C:
attribute: int
def method(self) -> None: ...
def method2(self) -> None: ...
Desired style
class A:
class B:
attribute: int
class C:
attribute: int
def method(self) -> None: ...
def method2(self) -> None: ...
Additional context
See this for a live demo.
Describe the style change
Nested classes in typing stubs should have blank lines between them.
Examples in the current Black style
Desired style
Additional context
See this for a live demo.