We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6120087 commit dcd7193Copy full SHA for dcd7193
qbreader/synchronous.py
@@ -46,7 +46,7 @@ def query(
46
tossupPagination: Optional[int] = 1,
47
bonusPagination: Optional[int] = 1,
48
min_year: int = Year.MIN_YEAR,
49
- max_year: int = Year.CURRENT_YEAR,
+ max_year: int = Year.CURRENT_YEAR,
50
) -> QueryResponse:
51
"""Query the qbreader database for questions.
52
tests/test_sync.py
@@ -102,7 +102,7 @@ def test_query_min_max_year_range(self):
102
103
for tossup in query.tossups:
104
assert min_year <= tossup.set.year <= max_year
105
-
+
106
@pytest.mark.parametrize(
107
"params, exception",
108
[
0 commit comments