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 2d82eeb commit de2df34Copy full SHA for de2df34
onboardapis/train/third_party/unwired/apis.py
@@ -16,6 +16,10 @@ class GenericUnwiredTrain(Train, InternetAccessMixin):
16
_internet_access: GenericUnwiredInternetAccessInterface
17
18
def __init__(self):
19
+ if not hasattr(self, '_api'):
20
+ self._api = GenericUnwiredAPI()
21
+ if not hasattr(self, '_internet_access'):
22
+ self._internet_access = GenericUnwiredInternetAccessInterface(self._api)
23
Train.__init__(self)
24
InternetAccessMixin.__init__(self)
25
0 commit comments