We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7593fe4 commit 7519989Copy full SHA for 7519989
src/python/tensorflow_cloud/core/run.py
@@ -264,8 +264,8 @@ def run(
264
# This contains the `entry_point` wrapped in a distribution strategy.
265
preprocessed_entry_point = None
266
if (distribution_strategy == "auto"
267
- or entry_point.endswith("ipynb")
268
- or entry_point is None):
+ or entry_point is None
+ or entry_point.endswith("ipynb")):
269
preprocessed_entry_point, \
270
pep_file_descriptor = preprocess.get_preprocessed_entry_point(
271
entry_point,
0 commit comments