-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -792,7 +792,7 @@ def __init__(self, *args, **kwargs): | |
self.foo = Foo(parent=self) | ||
|
||
class TestApp(Application): | ||
name = "test" | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
maartenbreddels
Author
Contributor
|
||
name = "test" # type:ignore | ||
|
||
aliases = {"val": "Bar.Foo.val"} | ||
classes = [Foo, Bar] | ||
|
I had added the explicit types in
Application
so we wouldn't have to use#type: ignore
in all of the subclasses.