mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-16 18:32:06 +08:00
7 lines
153 B
Python
7 lines
153 B
Python
from .Route import Route
|
|
|
|
class DPRoute(Route):
|
|
def current_road_name(self):
|
|
if not self.located:
|
|
return None
|
|
return self.current_wr.name |