Bread_Editor/settings.py

11 lines
238 B
Python

#!/usr/bin/python3
import os
from dataclasses import dataclass
@dataclass
class Settings:
last_opened_file: str=f"{os.path.dirname(os.path.abspath(__file__))}/example.txt"
highlight_ones: bool=False
square_bits: bool=False