Skip to content

Commit

Permalink
Fix small issue
Browse files Browse the repository at this point in the history
  • Loading branch information
christianversloot committed Oct 16, 2020
1 parent f6cf754 commit bc2e521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/tensorflow_cloud/core/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def get_preprocessed_entry_point(
script_lines.append(line)

# Create a tmp wrapped entry point script file.
_, output_file = tempfile.mkstemp(suffix=".py")
file_descriptor, output_file = tempfile.mkstemp(suffix=".py")
with open(output_file, "w") as f:
f.writelines(script_lines)

Expand Down

0 comments on commit bc2e521

Please sign in to comment.