forked from organicmaps/organicmaps
[python][generator] Fix for transit_path_experimental.
This commit is contained in:
parent
d3f1f4ab14
commit
986b4ac0d2
1 changed files with 4 additions and 2 deletions
|
@ -214,8 +214,10 @@ class PathProvider:
|
|||
|
||||
@property
|
||||
def transit_path_experimental(self) -> AnyStr:
|
||||
return os.path.join(
|
||||
self.intermediate_data_path, "transit_from_gtfs"
|
||||
return (
|
||||
os.path.join(self.intermediate_data_path, "transit_from_gtfs")
|
||||
if settings.TRANSIT_URL
|
||||
else ""
|
||||
)
|
||||
|
||||
@property
|
||||
|
|
Loading…
Add table
Reference in a new issue