Upstream: https://github.com/Rhoban/onshape-to-robot Upstream-Commit: 80e710700aac9573a2230f74f7ce9e094833a0bc Upstream-Branch: master
14 lines
238 B
Python
14 lines
238 B
Python
from .config import Config
|
|
from .robot import Robot
|
|
|
|
|
|
class Processor:
|
|
is_safe: bool = True
|
|
|
|
def __init__(self, config: Config):
|
|
self.config: Config = config
|
|
pass
|
|
|
|
def process(self, robot: Robot):
|
|
pass
|