mirror of
https://github.com/j3ssie/osmedeus.git
synced 2026-08-20 14:42:31 +02:00
15 lines
273 B
Python
15 lines
273 B
Python
import os
|
|
import sys
|
|
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
from core import utils
|
|
|
|
|
|
def parse_speed(options):
|
|
speed = options.get('speed')
|
|
|
|
quick = speed.split(';;')[0]
|
|
slow = speed.split(';;')[0]
|
|
|
|
print(quick, slow)
|
|
return quick |