Skip to content

Commit ced41f1

Browse files
lint
1 parent 8ee3245 commit ced41f1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

metaflow/metaflow_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@
248248
# default to True.
249249
BATCH_EMIT_TAGS = from_conf("BATCH_EMIT_TAGS", False)
250250

251-
# Set to False to disable default package installation in docker images during job launch.
252-
# This allows better dependency control for your flow, but please ensure that your
253-
# environment has all the required packages for your datastore type (any necessary
251+
# Set to False to disable default package installation in docker images during job launch.
252+
# This allows better dependency control for your flow, but please ensure that your
253+
# environment has all the required packages for your datastore type (any necessary
254254
# dependencies should be explicitly installed in your custom container).
255255
AUTO_INSTALL_DEPENDENCIES = from_conf("AUTO_INSTALL_DEPENDENCIES", True)
256256

metaflow/metaflow_environment.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ def _get_download_code_package_cmd(self, code_package_url, datastore_type):
119119
% datastore_type
120120
)
121121

122-
def _get_install_dependencies_cmd(self, datastore_type, install_dependencies=AUTO_INSTALL_DEPENDENCIES):
122+
def _get_install_dependencies_cmd(
123+
self, datastore_type, install_dependencies=AUTO_INSTALL_DEPENDENCIES
124+
):
123125
cmds = []
124126
if install_dependencies:
125127
cmds.append("%s -m pip install requests -qqq" % self._python())

0 commit comments

Comments
 (0)