Restructure: remove separate parser
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
class Converter:
|
||||
input = ""
|
||||
from kiutils.footprint import Footprint
|
||||
|
||||
def __init__(self, input: str):
|
||||
self.input = input
|
||||
class Converter:
|
||||
footprint: Footprint
|
||||
|
||||
def __init__(self, footprint: Footprint):
|
||||
self.footprint = footprint
|
||||
|
||||
def convert(self) -> str:
|
||||
return ""
|
||||
|
||||
Reference in New Issue
Block a user