Skip to content

Commit f70b5a2

Browse files
committed
update formatting
1 parent 3dcbded commit f70b5a2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

metaflow/plugins/env_escape/client_modules.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ class ModuleImporter(object):
142142
config_dir: Directory containing configuration for the environment escape
143143
module_prefixes: List of module name prefixes to handle
144144
"""
145+
145146
def __init__(
146147
self,
147148
python_executable,
@@ -171,7 +172,7 @@ def find_spec(self, fullname, path=None, target=None):
171172

172173
def create_module(self, spec):
173174
# Return the pre-created wrapped module for this spec
174-
self._initialize_client()
175+
self._initialize_client()
175176

176177
fullname = spec.name
177178
canonical_fullname = get_canonical_name(fullname, self._aliases)
@@ -182,7 +183,7 @@ def create_module(self, spec):
182183
return wrapped_module
183184

184185
def exec_module(self, module):
185-
# No initialization needed since the wrapped module returned by
186+
# No initialization needed since the wrapped module returned by
186187
# create_module() is fully initialized
187188
pass
188189

0 commit comments

Comments
 (0)