Skip to content

Commit 13bfd2b

Browse files
author
Keian Noori
committed
change from explicit to implicit string concatenation
1 parent 1f1ccbf commit 13bfd2b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/pymatgen/io/vasp/outputs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3060,8 +3060,10 @@ def piezo_section_start(results, _match):
30603060
if not self.lrpa:
30613061
search.append(
30623062
[
3063-
r"PIEZOELECTRIC TENSOR \(including local field effects\)"+
3064-
r"(?:\s*for\s*field\s*in\s*x,\s*y,\s*z\s*)? \(C/m\^2\)",
3063+
(
3064+
r"PIEZOELECTRIC TENSOR \(including local field effects\)"
3065+
r"(?:\s*for\s*field\s*in\s*x,\s*y,\s*z\s*)? \(C/m\^2\)"
3066+
),
30653067
None,
30663068
piezo_section_start,
30673069
]

0 commit comments

Comments
 (0)