refacto file and class names
This commit is contained in:
parent
3d0d7874e3
commit
956fa63c0b
12 changed files with 126 additions and 126 deletions
|
|
@ -17,7 +17,7 @@ from warchron.model.exception import (
|
|||
DomainError,
|
||||
RequiresConfirmation,
|
||||
)
|
||||
from warchron.model.tie_manager import TieResolver, TieContext
|
||||
from warchron.model.tiebreaking import TieBreaker, TieContext
|
||||
from warchron.model.pairing import Pairing
|
||||
from warchron.model.round import Round
|
||||
from warchron.model.war import War
|
||||
|
|
@ -31,7 +31,7 @@ from warchron.controller.dtos import (
|
|||
ChoiceDTO,
|
||||
BattleDTO,
|
||||
)
|
||||
from warchron.controller.closure_workflow import (
|
||||
from warchron.controller.workflows import (
|
||||
RoundClosureWorkflow,
|
||||
RoundPairingWorkflow,
|
||||
)
|
||||
|
|
@ -274,7 +274,7 @@ class RoundController:
|
|||
context_name=data.title,
|
||||
)
|
||||
if not dialog.exec():
|
||||
TieResolver.cancel_tie_break(war, ctx)
|
||||
TieBreaker.cancel_tie_break(war, ctx)
|
||||
raise AbortedOperation("Tie resolution cancelled")
|
||||
bids_map[ctx.key()] = dialog.get_bids()
|
||||
return bids_map
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue