mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
16 lines
241 B
Python
16 lines
241 B
Python
from collections.abc import Sized
|
|
|
|
|
|
def check(string: str):
|
|
if len(string) != 1:
|
|
raise ValueError
|
|
|
|
|
|
class BaseDividingLine:
|
|
def __init__(self, unit_part: check):
|
|
self.unit_part = unit_part
|
|
|
|
|
|
BaseDividingLine('sygu')
|
|
|