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 026b028 commit 45be2beCopy full SHA for 45be2be
extras-requirements.txt
@@ -1,3 +1,3 @@
1
honeybee-energy>=1.95.35
2
honeybee-radiance>=1.64.118
3
-ladybug-vtk>=0.13.9
+ladybug-vtk>=0.14.1
honeybee_display/cli/__init__.py
@@ -199,9 +199,9 @@ def model_to_vis_set(
199
else: # vtkjs can only be read as binary
200
with open(out_file_path, 'rb') as of:
201
f_contents = of.read()
202
- b = base64.b64encode(f_contents)
203
- base64_string = b.decode('utf-8')
204
- output_file.write(base64_string)
+ b = base64.b64encode(f_contents)
+ f_contents = b.decode('utf-8')
+ output_file.write(f_contents)
205
else:
206
raise ValueError('Unrecognized output-format "{}".'.format(output_format))
207
except Exception as e:
0 commit comments