Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix flake8 errors introduced by the previous commit. #262

Merged
merged 1 commit into from Apr 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions qt_gui/src/qt_gui/main_window.py
Expand Up @@ -28,9 +28,9 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

from python_qt_binding.QtCore import qDebug, Qt, Signal, QRect
from python_qt_binding.QtWidgets import QToolBar, QTextBrowser
from python_qt_binding.QtCore import qDebug, QRect, Qt, Signal
from python_qt_binding.QtGui import QFont
from python_qt_binding.QtWidgets import QTextBrowser, QToolBar

from qt_gui.dockable_main_window import DockableMainWindow
from qt_gui.settings import Settings
Expand All @@ -56,7 +56,7 @@ def __init__(self, help_text=None):
self._help_widget.setTextInteractionFlags(Qt.TextBrowserInteraction)
self._help_widget.setOpenExternalLinks(True)
self._help_widget.setHtml(help_text)
self._help_widget.setStyleSheet("background:transparent;")
self._help_widget.setStyleSheet('background:transparent;')

self._save_on_close_signaled = False
self._global_settings = None
Expand Down