Skip to content
Snippets Groups Projects

Implement `Power up` part of hive power management

Merged Jakub Ziebinski requested to merge jziebinski/prepare-hp-management into develop
Compare and Show latest version
48 files
+ 1255
279
Compare changes
  • Side-by-side
  • Inline
Files
48
from __future__ import annotations
from dataclasses import dataclass
from clive.__private.cli.commands.abc.operation_command import OperationCommand
from schemas.operations import AccountWitnessProxyOperation
@dataclass(kw_only=True)
class ProcessProxyClear(OperationCommand):
account_name: str
async def _create_operation(self) -> AccountWitnessProxyOperation:
return AccountWitnessProxyOperation(
account=self.account_name,
proxy="",
)
Loading