Bread_Editor/settings.py

13 lines
293 B
Python
Raw Normal View History

2024-11-21 18:54:32 +01:00
#!/usr/bin/python3
from dataclasses import dataclass, field
from typing import List
from utils import Utils
2024-11-21 18:54:32 +01:00
@dataclass
class Settings:
last_opened_files: List=field(default_factory=lambda: [f"{Utils.editor_path}/example.txt"])
2024-11-21 20:19:37 +01:00
highlight_ones: bool=False
square_bits: bool=False