10 lines
207 B
Python
10 lines
207 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"
|
|
square_bits: bool=False
|