Skip to content

Commit 2bf3688

Browse files
Gavin AguiarGavin Aguiar
authored andcommitted
Fixed flake8 errors
1 parent 59ba143 commit 2bf3688

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

azure_functions_worker/loader.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ def load_function(name: str, directory: str, script_file: str,
186186
message=f'Troubleshooting Guide: {MODULE_NOT_FOUND_TS_URL}',
187187
debug_logs='Error in index_function_app. '
188188
f'Sys Path: {sys.path}, Sys Module: {sys.modules},'
189-
f'python-packages Path exists: {os.path.exists(CUSTOMER_PACKAGES_PATH)}')
189+
'python-packages Path exists: '
190+
f'{os.path.exists(CUSTOMER_PACKAGES_PATH)}')
190191
def index_function_app(function_path: str):
191192
module_name = pathlib.Path(function_path).stem
192193
imported_module = importlib.import_module(module_name)

tests/consumption_tests/test_linux_consumption.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,4 +251,4 @@ def _get_blob_url(self, scenario_name: str) -> str:
251251
return (
252252
f'https://pythonworker{self._py_shortform}sa.blob.core.windows.net/'
253253
f'python-worker-lc-apps/{scenario_name}{self._py_shortform}.zip'
254-
)
254+
)

0 commit comments

Comments
 (0)