Skip to content

Commit 5c04eb1

Browse files
committed
removes usage of Final to keep 3.7 compatibility
1 parent d44d409 commit 5c04eb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/api_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Tests for the Boonli API."""
22
import json
33
import pathlib
4-
from typing import Any, Final
4+
from typing import Any
55

66
import pytest
77

@@ -15,7 +15,7 @@
1515
_extract_menu,
1616
)
1717

18-
FIXTURE_DIR: Final = pathlib.Path(__file__).parent.resolve() / "fixtures"
18+
FIXTURE_DIR = pathlib.Path(__file__).parent.resolve() / "fixtures"
1919

2020

2121
def load_fixture(path: str) -> str:

0 commit comments

Comments
 (0)