回答編集履歴
1
誤字の修正
answer
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
class Tags(ndb.Model):
|
5
5
|
id = ndb.IntegerProperty(indexed=True)
|
6
6
|
```
|
7
|
-
のところでidに
|
7
|
+
のところでidにIntegerを期待しているにも関わらず
|
8
8
|
```python
|
9
9
|
tags = [Tags(key=t) for t in self.request.get_all('tag')]
|
10
10
|
```
|