Skip to content

Commit b78e64f

Browse files
committed
Tidying for lint
1 parent b7d9f99 commit b78e64f

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/koopmans/settings/_wannierjl.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
from pathlib import Path
1+
"""Settings for WannierJL."""
2+
23
from typing import Any
34

45
from ._utils import SettingsDict
56

67

78
class WannierJLSettingsDict(SettingsDict):
9+
"""Settings dictionary for a WannierJL calculation."""
10+
811
def __init__(self, **kwargs) -> None:
912

1013
super().__init__(valid=['task', 'nval', 'outdir-val', 'outdir-cond', 'run-disentangle', 'run-optrot',

src/koopmans/utils/_spin.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33

44
class Spin(Enum):
5+
"""Different possibilities for the spin channel of a system."""
6+
57
UP = "up"
68
DOWN = "down"
79
SPINOR = "spinor"

0 commit comments

Comments
 (0)