mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-03-14 14:54:06 +00:00
more formatting fixes
Found by flake8.
This commit is contained in:
@@ -13,7 +13,7 @@ class SpecialPhrase():
|
||||
def __init__(self, p_label, p_class, p_type, p_operator):
|
||||
self.p_label = p_label.strip()
|
||||
self.p_class = p_class.strip()
|
||||
#Hack around a bug where building=yes was imported with quotes into the wiki
|
||||
# Hack around a bug where building=yes was imported with quotes into the wiki
|
||||
self.p_type = re.sub(r'\"|"', '', p_type.strip())
|
||||
#Needed if some operator in the wiki are not written in english
|
||||
# Needed if some operator in the wiki are not written in english
|
||||
self.p_operator = '-' if p_operator not in ('near', 'in') else p_operator
|
||||
|
||||
Reference in New Issue
Block a user