8 lines
113 B
Python
8 lines
113 B
Python
#!/usr/bin/python3
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class Settings:
|
|
square_bits: bool = False
|