Completed
Pull Request — main (#11)
by Jace
53s queued 53s
created

slackoff.config   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
from datafiles import datafile, field
2
3
4
@datafile("~/Library/Preferences/slackoff.yml")
5
class Settings:
6
    workspaces: list[str] = field(default_factory=list)
7
8
9
settings = Settings()
10