You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
200 B
12 lines
200 B
3 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
class CarPath:
|
||
|
def __init__(self, argv4):
|
||
|
self.path = int(argv4[0])
|
||
|
self.id = int(argv4[1])
|
||
|
self.time_stage = int(argv4[2])
|
||
|
|
||
|
|
||
|
|