formatting

This commit is contained in:
John Lancaster
2024-09-04 23:50:39 -05:00
parent 6c3ea5084b
commit b673bda1f2
6 changed files with 10 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
from appdaemon.adapi import ADAPI
class Child(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 GrandParent(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 Parent(ADAPI):
def initialize(self):
self.log(f"{self.__class__.__name__} Initialized")
self.log(f'{self.__class__.__name__} Initialized')

View File

@@ -2,6 +2,7 @@ from appdaemon.adapi import ADAPI
from child import Child
class Sibling(Child):
def initialize(self):
self.log(f"{self.__class__.__name__} Initialized")
self.log(f'{self.__class__.__name__} Initialized')

View File

@@ -3,4 +3,4 @@ from appdaemon.adapi import ADAPI
class HelloWorld(ADAPI):
def initialize(self):
self.log(f"{self.__class__.__name__} Initialized")
self.log(f'{self.__class__.__name__} Initialized')

View File

@@ -3,4 +3,4 @@ from appdaemon.adapi import ADAPI
class SimpleApp(ADAPI):
def initialize(self):
self.log(f"{self.__class__.__name__} Initialized")
self.log(f'{self.__class__.__name__} Initialized')