Files
PyG2O/g2o/classes/daedalus.py
AURUMVORXX 15b34c3f40 feat: Added Sky class
+ changed file structure in the python module
+ fixed static method binding for PyDaedalus class
2024-11-07 02:35:34 +03:00

15 lines
342 B
Python

import sqg2o
class Daedalus:
@staticmethod
def index(value : str) -> int:
return sqg2o.Daedalus.index(value)
@staticmethod
def symbol(value : str) -> dict:
return sqg2o.Daedalus.symbol(value)
@staticmethod
def instance(value : str) -> dict:
return sqg2o.Daedalus.instance(value)