Skip to content

Commit

Permalink
remove bookmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
acockburn committed Mar 25, 2023
1 parent cca4311 commit e6a9d4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appdaemon/app_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -1212,7 +1212,7 @@ def get_app_dependencies(self, app):

return deps

def create_app(self, app=None, **kwargs): # @next-release create_app()
def create_app(self, app=None, **kwargs):
"""Used to create an app, which is written to a config file"""

executed = True
Expand Down Expand Up @@ -1302,7 +1302,7 @@ def create_app(self, app=None, **kwargs): # @next-release create_app()

return executed

def edit_app(self, app, **kwargs): # @next-release edit_app()
def edit_app(self, app, **kwargs):
"""Used to edit an app, which is already in Yaml. It is expecting the app's name"""

executed = True
Expand Down Expand Up @@ -1344,7 +1344,7 @@ def edit_app(self, app, **kwargs): # @next-release edit_app()

return executed

def remove_app(self, app, **kwargs): # @next-release remove_app()
def remove_app(self, app, **kwargs):
"""Used to remove an app"""

result = None
Expand Down

0 comments on commit e6a9d4e

Please sign in to comment.