Merge pull request #78 from DerDakon/entrance-list
list which subway entrances are not in stop areas
This commit is contained in:
commit
0373b72901
1 changed files with 2 additions and 1 deletions
|
@ -1209,7 +1209,8 @@ class City:
|
|||
self.warn('Found {} entrances not used in routes or stop_areas: {}'.format(
|
||||
len(unused), format_elid_list(unused)))
|
||||
if not_in_sa:
|
||||
self.warn('{} subway entrances are not in stop_area relations'.format(len(not_in_sa)))
|
||||
self.warn('{} subway entrances are not in stop_area relations: {}'.format(
|
||||
len(not_in_sa), format_elid_list(not_in_sa))
|
||||
|
||||
def check_return_routes(self, rmaster):
|
||||
variants = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue