Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom-TBT committed Jul 21, 2024
1 parent 6ffdda9 commit 4f01146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion omero_tagsearch/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def get_tags(obj, tagset_d):
ownership_l = [1] * len(tags)
else:
ownership_l = []
for i, (id_,_,_,owner) in enumerate(tags):
for i, (id_, _, _, owner) in enumerate(tags):
if int(owner == user_id):
ownership_l.append(id_)

Expand Down

0 comments on commit 4f01146

Please sign in to comment.