Skip to content

Commit

Permalink
Merge pull request #14319 from novaya/bug_fix
Browse files Browse the repository at this point in the history
PR: Fix typo in variable name
  • Loading branch information
ccordoba12 authored Nov 29, 2020
2 parents 24f4cc2 + 8919c82 commit f56ce58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spyder/api/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

# Standard library imports
from math import ceil
import logging

# Third party imports
import logging
from qtpy.QtWidgets import QWidget, QApplication
from qtpy.QtGui import QBrush, QColor, QPen, QPainter
from qtpy.QtCore import Qt, QRect
Expand Down
2 changes: 1 addition & 1 deletion spyder/plugins/help/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def __init__(self, parent):
else:
self.webview.web_widget.setStyleSheet(
"background:{}".format(MAIN_BG_COLOR))
self.viewview.page().setLinkDelegationPolicy(
self.webview.page().setLinkDelegationPolicy(
QWebEnginePage.DelegateAllLinks)

self.find_widget = FindReplace(self)
Expand Down

0 comments on commit f56ce58

Please sign in to comment.