From 93d1b156bfe9343e4c8df5822cd28a3c380ca1e3 Mon Sep 17 00:00:00 2001 From: Tom-TBT Date: Thu, 10 Oct 2024 13:14:05 +0200 Subject: [PATCH] flake8 fix --- omero_figure/urls.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/omero_figure/urls.py b/omero_figure/urls.py index de59b0672..c21a7b7b0 100644 --- a/omero_figure/urls.py +++ b/omero_figure/urls.py @@ -87,8 +87,9 @@ path('chgrp/', views.chgrp, name='figure_chgrp'), # Get group and owner info for multiple images. ?image=1,2,3 - path('images_details/', views.images_details, name="figure_images_details"), + path('images_details/', views.images_details, + name="figure_images_details"), - # Get the URL for the LUT png based on the current omero-web version. + # Get the URL for the LUT png based on the current omero-web version path('is_dynamic_lut/', views.is_dynamic_lut, name='figure_dynamic_lut') ]