Skip to content

Commit

Permalink
export: Correct PyQt5 imports (#3480)
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc authored May 11, 2020
1 parent 564db2b commit 601cc69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/windows/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
except ImportError:
from xml.dom import minidom as xml

from PyQt5.QtCore import Qt, QCoreApplication, QTimer
from PyQt5.QtCore import Qt, QCoreApplication, QTimer, QSize
from PyQt5.QtWidgets import (
QMessageBox, QDialog, QFileDialog, QDialogButtonBox, QPushButton
)
from PyQt5.QtGui import QSize, QIcon
from PyQt5.QtGui import QIcon

from classes import info
from classes import ui_util
Expand Down

0 comments on commit 601cc69

Please sign in to comment.