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 d0f53fe commit 953de5fCopy full SHA for 953de5f
appdaemon/app_management.py
@@ -1039,7 +1039,8 @@ async def safe_import(self: "AppManagement"):
1039
await safe_import(self)
1040
1041
async def _init_sequences(self):
1042
- await self.AD.sequences.add_sequences(self.sequence_config)
+ if self.sequence_config is not None:
1043
+ await self.AD.sequences.add_sequences(self.sequence_config)
1044
1045
def apps_per_module(self, module_name: str) -> Set[str]:
1046
"""Finds which apps came from a given module name.
0 commit comments