17 lines
329 B
Python
17 lines
329 B
Python
#!/usr/bin/env python3
|
|
|
|
from parsing.postfix import Parsing
|
|
from issues.postfix import postfix
|
|
|
|
class Postfix:
|
|
def __init__(self):
|
|
self._objects = dict()
|
|
self._reports = dict()
|
|
|
|
self._postfix()
|
|
|
|
self._parsing = Parsing(self._objects)
|
|
|
|
def _postfix(self):
|
|
self._objects = postfix()
|