10 lines
172 B
Python
10 lines
172 B
Python
# -*- coding: utf-8 -*-
|
|
from pyqtgraph import mkQApp, ProgressDialog
|
|
|
|
mkQApp()
|
|
|
|
|
|
def test_progress_dialog():
|
|
with ProgressDialog("test", 0, 1) as dlg:
|
|
dlg += 1
|