forked from Support/sp-hydra-veil-gui
10 lines
No EOL
269 B
Python
Executable file
10 lines
No EOL
269 B
Python
Executable file
from PyQt6.QtWidgets import QApplication, QMessageBox
|
|
import sys
|
|
|
|
def show_error(error_text, title="Error"):
|
|
app = QApplication.instance()
|
|
if app is None:
|
|
app = QApplication(sys.argv)
|
|
|
|
QMessageBox.critical(None, title, error_text)
|
|
app.quit() |