Skip to content

Commit

Permalink
fixed syntax bug
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4f53 committed Nov 12, 2023
1 parent 653112f commit 4fd9ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion text_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def regional_pii(text):
from geotext import GeoText
place_entity = GeoText(text)

final_output = list(set(place_entity.cities + place_entity.countries)
final_output = list(set(place_entity.cities + place_entity.countries))
return final_output

def keywords_classify_pii(rules, intelligible_text_list):
Expand Down

0 comments on commit 4fd9ff0

Please sign in to comment.