Use mkstemp instead of unsafe mktemp

This commit is contained in:
Sarthak Munshi 2023-09-01 17:24:04 -07:00
parent df129c7ba3
commit c1ef452841

View File

@ -43,7 +43,7 @@ def view(stream_spec, detail=False, filename=None, pipe=False, **kwargs):
if pipe and filename is not None: if pipe and filename is not None:
raise ValueError('Can\'t specify both `filename` and `pipe`') raise ValueError('Can\'t specify both `filename` and `pipe`')
elif not pipe and filename is None: elif not pipe and filename is None:
filename = tempfile.mktemp() filename = tempfile.mkstemp()[1]
nodes = get_stream_spec_nodes(stream_spec) nodes = get_stream_spec_nodes(stream_spec)