Skip to content

Commit 1f6a7e1

Browse files
committed
type fix
1 parent fa29ff0 commit 1f6a7e1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

riptide/tests/configcrunch_test_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from __future__ import annotations
22

3+
from configcrunch import YamlConfigDocument
34
from riptide.config.document import DocumentClass, RiptideDocument
45
from schema import Schema
56

@@ -44,5 +45,5 @@ def schema(cls) -> Schema:
4445
raise NotImplementedError("not available for stub")
4546

4647
@classmethod
47-
def subdocuments(cls) -> Schema:
48+
def subdocuments(cls) -> list[tuple[str, type[YamlConfigDocument]]]:
4849
raise NotImplementedError("not available for stub")

0 commit comments

Comments
 (0)