mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-15 18:14:08 +00:00
Fix Ruff UP008 (super-call-with-parameters)
https://docs.astral.sh/ruff/rules/super-call-with-parameters/
This commit is contained in:
@@ -38,7 +38,7 @@ def run():
|
||||
|
||||
class GuiWidgetBimTester(QtWidgets.QWidget):
|
||||
def __init__(self, args=None):
|
||||
super(GuiWidgetBimTester, self).__init__()
|
||||
super().__init__()
|
||||
|
||||
if args is not None and args != {}:
|
||||
self.args = args
|
||||
|
||||
Reference in New Issue
Block a user