質問編集履歴
1
staticメソッドの引数が間違っていたので修正しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,9 +18,9 @@
|
|
18
18
|
|
19
19
|
@staticmethod
|
20
20
|
|
21
|
-
def to_user(t: Tuple[str, str, str
|
21
|
+
def to_user(t: Tuple[str, str, str]) -> User:
|
22
22
|
|
23
|
-
return User(t[0], t[1], t[2]
|
23
|
+
return User(t[0], t[1], t[2])
|
24
24
|
|
25
25
|
```
|
26
26
|
|