Skip to content

Commit

Permalink
Fixed phonic copying
Browse files Browse the repository at this point in the history
  • Loading branch information
BrentIO committed Jul 16, 2022
1 parent 1e1d6ef commit f99fd69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ourairports-airports.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,10 +423,10 @@ def special_handling(self):
self.phonic = self.name
self.removeInternationalAirport()

self.phonic.replace("/", " ")
self.phonic.replace("-", " ")
self.phonic.replace(" ", " ")
self.phonic.replace(" ", " ")
self.phonic = self.phonic.replace("/", " ")
self.phonic = self.phonic.replace("-", " ")
self.phonic = self.phonic.replace(" ", " ")
self.phonic = self.phonic.replace(" ", " ")

def removeInternationalAirport(self):
#Remove "International" and "Airport", and unnecessary spaces
Expand Down

0 comments on commit f99fd69

Please sign in to comment.