mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
implemented main function for publish report viewer
This commit is contained in:
parent
6ead88eeb5
commit
a23dfcea79
1 changed files with 11 additions and 0 deletions
|
|
@ -1,3 +1,5 @@
|
|||
from Qt import QtWidgets
|
||||
|
||||
from .report_items import (
|
||||
PublishReport
|
||||
)
|
||||
|
|
@ -16,4 +18,13 @@ __all__ = (
|
|||
"PublishReportViewerWidget",
|
||||
|
||||
"PublishReportViewerWindow",
|
||||
|
||||
"main",
|
||||
)
|
||||
|
||||
|
||||
def main():
|
||||
app = QtWidgets.QApplication([])
|
||||
window = PublishReportViewerWindow()
|
||||
window.show()
|
||||
return app.exec_()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue