Skip to content

Commit

Permalink
I'm used to Python >=3.9 :)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonded94 committed Aug 8, 2024
1 parent db6f5c8 commit e8451c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_crc32c.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import struct
import unittest
import warnings
from typing import Any, Generator, NamedTuple
from typing import Any, Generator, NamedTuple, List

import pytest

Expand Down Expand Up @@ -114,7 +114,7 @@ class CRCTestValue(NamedTuple):
crc: int


test_values: list[CRCTestValue] = [
test_values: List[CRCTestValue] = [
CRCTestValue("Numbers1", b"123456789", 0xE3069283),
CRCTestValue("Numbers2", b"23456789", 0xBFE92A83),
CRCTestValue("Phrase", b"The quick brown fox jumps over the lazy dog", 0x22620404),
Expand Down

0 comments on commit e8451c4

Please sign in to comment.