Skip to content

Commit 98190af

Browse files
committed
Python code-editor: fix mixin order regression
- Check mixin was moved to before Base - Bump to 0.0.36
1 parent 270db75 commit 98190af

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyqt_code_editor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
from ._settings import settings
44

5-
__version__ = '0.0.35'
5+
__version__ = '0.0.36'

pyqt_code_editor/code_editors/languages/python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Editor(LineNumber, Zoom, SmartBackspaceDelete, PythonAutoPair, Complete,
99
Comment, PythonAutoIndent, SearchReplace, FileLink, Execute,
10-
Theme, Shortcuts, Symbols, Base, Check,
10+
Check, Theme, Shortcuts, Symbols, Base,
1111
QPlainTextEdit):
1212

1313
code_editor_language = 'python'

0 commit comments

Comments
 (0)