Skip to content

Commit e67ce31

Browse files
committed
fix: found culprit of regular segmentation faults (close #14)
1 parent 316cb35 commit e67ce31

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
0.17.1
2+
- fix: found culprit of regular segmentation faults (#14)
23
- reg: invalid use PyQt6 namespace after migration from PyQt5
34
0.17.0
45
- BREAKING CHANGE: migrate codebase from PyQt5 to PyQt6

dcoraid/gui/dbview/filter_chain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ def __init__(self, *args, **kwargs):
1515
"""Filter chain widget with multiple filter views
1616
"""
1717
super(FilterChain, self).__init__(*args, **kwargs)
18-
QtWidgets.QMainWindow.__init__(self)
1918
ref_ui = resources.files("dcoraid.gui.dbview") / "filter_chain.ui"
2019
with resources.as_file(ref_ui) as path_ui:
2120
uic.loadUi(path_ui, self)

0 commit comments

Comments
 (0)