Skip to content

Commit bc2e521

Browse files
Fix small issue
1 parent f6cf754 commit bc2e521

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/tensorflow_cloud/core/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def get_preprocessed_entry_point(
190190
script_lines.append(line)
191191

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

0 commit comments

Comments
 (0)