From 7692763f83ad1be735b0b9e9ab0af8ce666d8de8 Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 11 Nov 2024 01:12:29 +0800 Subject: HALF WORK: 2024.12.17 --- tools/cru-py/cru/property.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 tools/cru-py/cru/property.py (limited to 'tools/cru-py/cru/property.py') diff --git a/tools/cru-py/cru/property.py b/tools/cru-py/cru/property.py deleted file mode 100644 index 9549731..0000000 --- a/tools/cru-py/cru/property.py +++ /dev/null @@ -1,24 +0,0 @@ -import json -from typing import Any - - -class PropertyItem: - def __init__(self, value: Any): - self._value = value - - @property - def value(self) -> Any: - return self._value - - @value.setter - def value(self, value: Any): - self._value = value - - -class PropertyTreeSection: - def __init__(self, data: dict[str, Any] | None = None) -> None: - self._data = data or {} - -class PropertyTree: - def __init__(self, data: dict[str, Any] | None = None) -> None: - self._data = data or {} \ No newline at end of file -- cgit v1.2.3