mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-11 01:28:19 +03:00
9 lines
124 B
Python
9 lines
124 B
Python
class GlobalData:
|
|
|
|
def __init__(self) -> None:
|
|
self.title = ''
|
|
self.cmd = ''
|
|
|
|
|
|
global_data = GlobalData
|