Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 12, 2024
1 parent 66a8478 commit 4f0fbea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtpy/tests/test_qtwidgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def test_QMenu_functions(qtbot):
def test_QMenu_submenu_instance(qtbot):
"""Test `QtWidgets.QMenu` submenus are `QtWidgets.QMenu` instances."""
menu = QtWidgets.QMenu()
menu.addMenu('test')
menu.addMenu("test")
submenu = menu.children()[1]
assert isinstance(submenu, QtWidgets.QMenu)

Expand Down

0 comments on commit 4f0fbea

Please sign in to comment.