commented out print statements

This commit is contained in:
John Lancaster
2024-05-03 08:25:20 -05:00
parent e9d5d3ce4e
commit 74a6504c59
5 changed files with 10 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
print(f' Importing {__name__} '.center(50, '+'))
# print(f' Importing {__name__} '.center(50, '+'))
from .bar import Bar
print(f' Done {__name__} '.center(50, '+'))
# print(f' Done {__name__} '.center(50, '+'))

View File

@@ -3,7 +3,7 @@ from pathlib import Path
from appdaemon.adbase import ADBase
filename = Path(__file__).name
print(f' Importing {filename} '.center(50, '-'))
# print(f' Importing {filename} '.center(50, '-'))
class Bar(ADBase):
def initialize(self):

View File

@@ -3,10 +3,11 @@ from pathlib import Path
from appdaemon.adbase import ADBase
filename = Path(__file__).name
print(f' Importing {filename} '.center(50, '-'))
# print(f' Importing {filename} '.center(50, '-'))
class Baz(ADBase):
def initialize(self):
self.adapi = self.get_ad_api()
self.adapi.log(f'Initialized app from {filename}')
# self.adapi.log(f'Initialized app from {filename}')
# self.adapi.log(f'CHANGED')