Bread_Editor/settings.py

12 lines
238 B
Python
Raw Permalink Normal View History

2024-11-21 18:54:32 +01:00
#!/usr/bin/python3
import os
2024-11-21 18:54:32 +01:00
from dataclasses import dataclass
@dataclass
class Settings:
last_opened_file: str=f"{os.path.dirname(os.path.abspath(__file__))}/example.txt"
2024-11-21 20:19:37 +01:00
highlight_ones: bool=False
square_bits: bool=False