Skip to content

Commit

Permalink
Fix linter error [E721]
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-bauer committed Jul 3, 2024
1 parent 4aef9b4 commit d630700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def create_box(row, fieldnames: list[str], reviewer_ids: list[str]) -> str:
multiselect=True,
min_selection_count=MIN_FIELDS,
)
selected_fields: list[str] = [s[0] for s in selected if type(s) == tuple]
selected_fields: list[str] = [s[0] for s in selected if type(s) is tuple]

cmd = custom_tex_command(selected_fields)

Expand Down

0 comments on commit d630700

Please sign in to comment.