Skip to content
Snippets Groups Projects
Commit eaad1f5b authored by Olivier J.N. Bertrand's avatar Olivier J.N. Bertrand
Browse files

PEP8 correct E231

parent 2947bfce
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ posorient.alpha_1 = 0
posorient.alpha_2 = 0
# 3) Load the image
image = mydb.scene(posorient=posorient)
image = image[...,0]
image = image[..., 0]
# 4) plot the image
to_plot_im = image[:, :, :3]
to_plot_im -= to_plot_im.min()
......
......@@ -13,7 +13,7 @@ mydb = DataBaseLoad(mydb_filename)
rowid = 12
# 3) Load the image
image = mydb.scene(rowid=rowid)
image = image[...,0]
image = image[..., 0]
# 4) plot the image
to_plot_im = image[:, :, :3]
to_plot_im -= to_plot_im.min()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment