Skip to content

Commit

Permalink
Fix bug in exemption list
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilwoodruff committed Apr 22, 2024
1 parent ef7a91d commit 94bbd04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_basic_flat_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
EXEMPTED_VARIABLES += [
variable
for variable in taxcalc_variable_metadata["read"]
if variable.endswith("_p") or variable.endswith("_s")
if variable.endswith("p") or variable.endswith("s")
]


Expand Down

0 comments on commit 94bbd04

Please sign in to comment.