mirror of
https://gitlab.com/RemixDev/deemix-py.git
synced 2025-01-01 12:46:11 +00:00
06c0034c36
Fix some lint warnings.
10 lines
157 B
Python
10 lines
157 B
Python
#!/usr/bin/env python3
|
|
import wx
|
|
|
|
from deemix.ui.MainFrame import MainFrame
|
|
|
|
if __name__ == '__main__':
|
|
app = wx.App()
|
|
frame = MainFrame()
|
|
app.MainLoop()
|