Skip to content

Commit f324145

Browse files
fix: py code formatter
1 parent e24abde commit f324145

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bolt/test/lit.cfg.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,8 @@
7575
if lit.util.which("fuser"):
7676
config.available_features.add("fuser")
7777

78-
rhel_release="/etc/redhat-release"
79-
if os.path.exists(rhel_release) and \
80-
"release 8" in open(rhel_release).read().lower():
78+
rhel_release = "/etc/redhat-release"
79+
if os.path.exists(rhel_release) and "release 8" in open(rhel_release).read().lower():
8180
config.available_features.add("rhel8")
8281

8382
llvm_config.use_default_substitutions()

0 commit comments

Comments
 (0)