src/eric7/UI/LogView.py

branch
eric7
changeset 10621
f5631f40c4d9
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
--- a/src/eric7/UI/LogView.py	Mon Mar 04 11:26:52 2024 +0100
+++ b/src/eric7/UI/LogView.py	Mon Mar 04 11:42:39 2024 +0100
@@ -276,9 +276,11 @@
             self.find(
                 QRegularExpression(
                     txt,
-                    QRegularExpression.PatternOption.NoPatternOption
-                    if caseSensitive
-                    else QRegularExpression.PatternOption.CaseInsensitiveOption,
+                    (
+                        QRegularExpression.PatternOption.NoPatternOption
+                        if caseSensitive
+                        else QRegularExpression.PatternOption.CaseInsensitiveOption
+                    ),
                 ),
                 flags,
             )
@@ -310,9 +312,11 @@
             self.find(
                 QRegularExpression(
                     txt,
-                    QRegularExpression.PatternOption.NoPatternOption
-                    if caseSensitive
-                    else QRegularExpression.PatternOption.CaseInsensitiveOption,
+                    (
+                        QRegularExpression.PatternOption.NoPatternOption
+                        if caseSensitive
+                        else QRegularExpression.PatternOption.CaseInsensitiveOption
+                    ),
                 ),
                 flags,
             )

eric ide

mercurial