Skip to content

Commit 01b6ee0

Browse files
Gavin AguiarGavin Aguiar
authored andcommitted
Flake8 fix
1 parent 7bcb85b commit 01b6ee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azure_functions_worker/dispatcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ async def _handle__function_load_request(self, request):
343343

344344
try:
345345
if not self._functions.get_function(function_id):
346-
if function_metadata.properties.get("worker_indexed", False) or \
347-
os.path.exists(function_path):
346+
if function_metadata.properties.get("worker_indexed", False) \
347+
or os.path.exists(function_path):
348348
# This is for the second worker and above where the worker
349349
# indexing is enabled and load request is called without
350350
# calling the metadata request. In this case we index the

0 commit comments

Comments
 (0)