Skip to content

Commit

Permalink
chore(style): Use set for set inclusion condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 27, 2024
1 parent b40e0bb commit c66a9fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ def _run_field_lists(name, summary_table, tables_only):
"""

# Allow users to measure co-occurrence of fields across related award and contract objects.
if summary_table in ('contracts_summary', 'awards_summary'):
if summary_table in {'contracts_summary', 'awards_summary'}:
if summary_table == 'contracts_summary':
variables['path_prefix'] = 'awards'
format_kwargs['other_data_column'] = 'award'
Expand Down

0 comments on commit c66a9fe

Please sign in to comment.