Agent: Add missing `return` to handle_island_api_errors()

This commit is contained in:
Mike Salvatore 2022-09-21 15:04:36 -04:00
parent 69c8d3a667
commit 388b9fe4ed
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ def handle_island_api_errors(func):
@wraps(func)
def wrapper(*args, **kwargs):
try:
func(*args, **kwargs)
return func(*args, **kwargs)
except IslandAPIError as err:
raise IslandCommunicationError(err)