Merge pull request #78 from DerDakon/entrance-list

list which subway entrances are not in stop areas
This commit is contained in:
alexey-zakharenkov 2019-07-04 11:55:10 +03:00 committed by GitHub
commit 0373b72901
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = {}