Skip to content
Snippets Groups Projects

Automatically add accounts to a known list after performing the appropriate actions

Merged Jakub Ziebinski requested to merge jziebinski/known-accounts into develop
All threads resolved!
Compare and Show latest version
24 files
+ 153
103
Compare changes
  • Side-by-side
  • Inline
Files
24
@@ -4,7 +4,7 @@ from dataclasses import dataclass
from clive.__private.cli.commands.abc.beekeeper_based_command import BeekeeperCommon
from clive.__private.cli.commands.abc.contextual_cli_command import ContextualCLICommand
from clive.__private.core.beekeeper import Beekeeper
from clive.__private.core.world import TyperWorld, World
from clive.__private.core.world import CLIWorld, World
@dataclass(kw_only=True)
@@ -23,7 +23,7 @@ class WorldBasedCommand(ContextualCLICommand[World], BeekeeperCommon, ABC):
return self.world.beekeeper
async def _create_context_manager_instance(self) -> World:
return TyperWorld(
return CLIWorld(
profile_name=self.profile_name,
use_beekeeper=self.use_beekeeper,
beekeeper_remote_endpoint=self.beekeeper_remote_url,
Loading