Skip to content

Commit c5f07e9

Browse files
authored
Merge pull request #731 from tisnik/lcore-740-type-hints-in-endpoint-utils
LCORE-740: type hints in endpoint utils
2 parents 232d515 + 85d3def commit c5f07e9

2 files changed

Lines changed: 97 additions & 66 deletions

File tree

tests/unit/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
"""Unit tests."""
22

3+
from typing import Any
34
from configuration import configuration # noqa: F401
45

5-
config_dict = {
6+
config_dict: dict[str, Any] = {
67
"name": "test",
78
"service": {
89
"host": "localhost",

0 commit comments

Comments
 (0)