Skip to content
Snippets Groups Projects
Commit 572f20ba authored by Olivier Bertrand's avatar Olivier Bertrand
Browse files

E502 PEP8

parent 2c1e545f
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@ class Cyberbee():
# save image as a temporary file, and then loaded
# sadly the rendered image pixels can not directly be access
filename = os.path.join(self.tmp_fileoutput['Folder'],
self.tmp_fileoutput['Image'] + '0001' + \
self.tmp_fileoutput['Image'] + '0001' +
self.tmp_fileoutput['ext'])
im_width, im_height = self.get_camera_resolution()
im = bpy.data.images.load(filename)
......@@ -236,7 +236,7 @@ class Cyberbee():
# save image as a temporary file, and then loaded
# sadly the rendered image pixels can not directly be access
filename = os.path.join(self.tmp_fileoutput['Folder'],
self.tmp_fileoutput['Depth'] + '0001' + \
self.tmp_fileoutput['Depth'] + '0001' +
self.tmp_fileoutput['ext'])
im_width, im_height = self.get_camera_resolution()
im = bpy.data.images.load(filename)
......
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