9 lines
147 B
Python
9 lines
147 B
Python
|
from ..Qt import QtWidgets
|
||
|
|
||
|
|
||
|
class TgCalculator(QtWidgets.QDialog):
|
||
|
def __init__(self, parent=None):
|
||
|
super().__init__(parent=parent)
|
||
|
|
||
|
|