Skip to content
Snippets Groups Projects
Commit eff996da authored by Brandon Piotrzkowski's avatar Brandon Piotrzkowski
Browse files

Again fix tuple bug

parent f3d4a204
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ def combine_skymaps(skymapfilesbytes):
trigger skymap and the LVC skymap and writes to a temporary output file. It
then returns the contents of the file as a byte array.
"""
skymap1filebytes, skymap2filebytes = skymapbytes
skymap1filebytes, skymap2filebytes = skymapfilebytes
with NamedTemporaryFile(mode='rb', suffix='.fits.gz') as combinedskymap, \
NamedTemporaryFile(content=skymap1filebytes) as skymap1file, \
NamedTemporaryFile(content=skymap2filebytes) as skymap2file, \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment