Skip to content

Commit 0afa448

Browse files
committed
dft linestyle to dotted
1 parent 123fe99 commit 0afa448

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@
1414
]
1515

1616
dashed = (0, (5, 1))
17+
dotted = (0, (1, 1))
1718

1819
style_dict: Dict[str, Dict[str, Any]] = {
1920
'dft': {
2021
'color': 'black',
2122
'label': 'DFT',
23+
'linestyle': dotted,
2224
},
2325
'nequip': {
2426
'color': colors[1],

0 commit comments

Comments
 (0)