We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0b0408 commit e6a1987Copy full SHA for e6a1987
extractors/personal_identifiers/location_extraction/code_snippet_common.md
@@ -35,9 +35,9 @@ def example_integration():
35
for text in texts:
36
found = location_extraction(text, extraction_keyword)
37
if found:
38
- print(f"text: \"{text}\" has {label} -> {found}")
+ print(f"text: \"{text}\" has {extraction_keyword} -> {found}")
39
else:
40
- print(f"text: \"{text}\" doesn't have {label}")
+ print(f"text: \"{text}\" doesn't have {extraction_keyword}")
41
42
example_integration()
43
```
0 commit comments