Skip to content

Commit

Permalink
fix E501 on issuing_authorities_testdata
Browse files Browse the repository at this point in the history
./aamva_standard/test_issuing_authority.py:8:80: E501 line too long (90 > 79 characters)
./aamva_standard/test_issuing_authority.py:9:80: E501 line too long (86 > 79 characters)
  • Loading branch information
benhovinga committed Dec 30, 2023
1 parent 1a94c1f commit 3edb757
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions aamva_standard/test_issuing_authority.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
@pytest.fixture
def issuing_authorities_testdata():
return (
issuing_authority.IssuingAuthority(100001, "Test Jurisdiction 1", "T1", "Canada"),
issuing_authority.IssuingAuthority(100002, "Test Jurisdiction 2", "T2", "USA")
issuing_authority.IssuingAuthority(
100001, "Test Jurisdiction 1", "T1", "Canada"),
issuing_authority.IssuingAuthority(
100002, "Test Jurisdiction 2", "T2", "USA")
)


Expand Down

0 comments on commit 3edb757

Please sign in to comment.