Run black over unmount tests

This commit is contained in:
Dave Pearson
2023-01-09 13:57:49 +00:00
parent 5df5f12906
commit afc7ba2a37

View File

@@ -12,7 +12,9 @@ async def test_unmount():
class UnmountWidget(Container):
def on_unmount(self, event: events.Unmount):
unmount_ids.append(f"{self.__class__.__name__}#{self.id}-{self.parent is not None}-{len(self.children)}")
unmount_ids.append(
f"{self.__class__.__name__}#{self.id}-{self.parent is not None}-{len(self.children)}"
)
class MyScreen(Screen):
def compose(self) -> ComposeResult: