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 bebe6f1 commit cb0fb87Copy full SHA for cb0fb87
application/application.py
@@ -30,10 +30,12 @@ def __init__(self,vid):
30
self.ui_controller = None
31
self.vid = vid
32
33
+ @staticmethod
34
def create_application_for_view(vid):
35
if vid not in Application.active_applications:
36
Application.active_applications[vid] = Application(vid)
37
38
39
def get_application(vid):
40
Application.create_application_for_view(vid)
41
return Application.active_applications[vid]
0 commit comments