Skip to content

Commit b648435

Browse files
committed
Remove the now unused thing
1 parent ff74d8e commit b648435

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

chia/wallet/wallet_request_types.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from chia_rs import Coin, G1Element, G2Element, PrivateKey
77
from chia_rs.sized_bytes import bytes32
88
from chia_rs.sized_ints import uint8, uint16, uint32, uint64
9-
from typing_extensions import Self, dataclass_transform
9+
from typing_extensions import Self
1010

1111
from chia.data_layer.data_layer_wallet import Mirror
1212
from chia.data_layer.singleton_record import SingletonRecord
@@ -39,11 +39,6 @@
3939
from chia.wallet.wallet_spend_bundle import WalletSpendBundle
4040

4141

42-
@dataclass_transform(frozen_default=True, kw_only_default=True)
43-
def kw_only_dataclass(cls: type[Any]) -> type[Any]:
44-
return dataclass(frozen=True, kw_only=True)(cls)
45-
46-
4742
def default_raise() -> Any: # pragma: no cover
4843
raise RuntimeError("This should be impossible to hit and is just for < 3.10 compatibility")
4944

0 commit comments

Comments
 (0)