Skip to content

Commit fe7c01b

Browse files
committed
annotations for next release
1 parent bcada8a commit fe7c01b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

appdaemon/app_management.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ def get_app_dependencies(self, app):
12051205

12061206
return deps
12071207

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

12111211
executed = True
@@ -1295,7 +1295,7 @@ def create_app(self, app=None, **kwargs):
12951295

12961296
return executed
12971297

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

13011301
executed = True
@@ -1337,7 +1337,7 @@ def edit_app(self, app, **kwargs):
13371337

13381338
return executed
13391339

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

13431343
result = None

appdaemon/http.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ def get_web_response(self, request, code, error):
861861
return web.Response(text=res, content_type="text/html")
862862

863863
@securedata
864-
async def call_app_endpoint(self, request):
864+
async def call_app_endpoint(self, request): # @next-release get requests object in somehow
865865
code = 200
866866
ret = ""
867867
endpoint = request.match_info.get("endpoint")

0 commit comments

Comments
 (0)