Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
will-moore committed Jun 5, 2024
1 parent 0eba85e commit acd328b
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions omero_figure/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from omeroweb.webgateway import views as webgateway_views
from . import views
from django.urls import re_path, path
from django.urls import path


urlpatterns = [
Expand All @@ -38,16 +38,15 @@
name='make_web_figure'),

# Save json to file annotation
path('save_web_figure/', views.save_web_figure,
name='save_web_figure'),
path('save_web_figure/', views.save_web_figure, name='save_web_figure'),

# Get json from file (file annotation Id)
path('load_web_figure/<int:file_id>/', views.load_web_figure,
name='load_web_figure'),
name='load_web_figure'),

# List file annotations of saved Figures
path('list_web_figures/', views.list_web_figures,
name='list_web_figures'),
name='list_web_figures'),

path('render_thumbnail/<int:iid>/',
webgateway_views.render_thumbnail,
Expand Down

0 comments on commit acd328b

Please sign in to comment.