Enable excludes (#18)

This commit is contained in:
Charlie Marsh 2022-08-20 13:00:58 -04:00 committed by GitHub
parent 7359e862c1
commit b11a7eefa3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 140 additions and 83 deletions

View file

@ -0,0 +1,9 @@
a = "abc"
b = f"ghi{'jkl'}"
c = f"def"
d = f"def" + "ghi"
e = (
f"def" +
"ghi"
)