Commit 844d8b9
authored
Update natural_language_understanding_v1.py
I was getting this error:
NameError: name 'features' is not defined
found out that line no. 15:
features=[features.Entities(), features.Keywords()])
should be:
features=[Features.Entities(), Features.Keywords()])
Notice the uppercase 'F'.1 parent 1d5802c commit 844d8b9
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
0 commit comments