first working tests

This commit is contained in:
John Lancaster
2024-08-12 19:36:13 -05:00
parent d5714808ed
commit ac3a7d7d37
17 changed files with 281 additions and 97 deletions

View File

@@ -2,4 +2,4 @@ from .eggs import Eggs
from .ham import Ham
from .spam import Spam
__all__ = ['Eggs', 'Ham', 'Spam']
__all__ = ["Eggs", "Ham", "Spam"]

View File

@@ -1,5 +1,6 @@
from appdaemon.adapi import ADAPI
class Eggs(ADAPI):
def initialize(self):
self.log(f'{self.__class__.__name__} Initialized')
self.log(f"{self.__class__.__name__} Initialized")

View File

@@ -1,5 +1,6 @@
from appdaemon.adapi import ADAPI
class Ham(ADAPI):
def initialize(self):
self.log(f'{self.__class__.__name__} Initialized')
self.log(f"{self.__class__.__name__} Initialized")

View File

@@ -1,5 +1,6 @@
from appdaemon.adapi import ADAPI
class Spam(ADAPI):
def initialize(self):
self.log(f'{self.__class__.__name__} Initialized')
self.log(f"{self.__class__.__name__} Initialized")