Skip to content

Commit 8189655

Browse files
committed
re-order __init__.pyi
1 parent 48e2a8c commit 8189655

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

python/hangman_solver/__init__.pyi

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,6 @@ __all__ = (
1111
"Language",
1212
)
1313

14-
15-
def read_words_with_length(language: Language, word_length: int, /) -> Collection[str]:
16-
pass
17-
18-
def solve(
19-
pattern_string: str,
20-
invalid_letters: Sequence[str],
21-
language: Language,
22-
max_words_to_collect: int
23-
) -> HangmanResult:
24-
pass
25-
26-
def solve_crossword(
27-
pattern_string: str,
28-
invalid_letters: Sequence[str],
29-
language: Language,
30-
max_words_to_collect: int
31-
) -> HangmanResult:
32-
pass
33-
3414
class HangmanResult:
3515
@property
3616
def input(self, /) -> str: ...
@@ -75,3 +55,23 @@ class Language:
7555

7656
class UnknownLanguageError(ValueError):
7757
pass
58+
59+
60+
def read_words_with_length(language: Language, word_length: int, /) -> Collection[str]:
61+
pass
62+
63+
def solve(
64+
pattern_string: str,
65+
invalid_letters: Sequence[str],
66+
language: Language,
67+
max_words_to_collect: int
68+
) -> HangmanResult:
69+
pass
70+
71+
def solve_crossword(
72+
pattern_string: str,
73+
invalid_letters: Sequence[str],
74+
language: Language,
75+
max_words_to_collect: int
76+
) -> HangmanResult:
77+
pass

0 commit comments

Comments
 (0)