Fix imports

This commit is contained in:
Prathamesh Musale 2024-10-01 17:47:09 +05:30
parent 08109355bc
commit 19e1ce211b

View File

@ -24,8 +24,8 @@ import requests
import yaml import yaml
from stack_orchestrator.deploy.webapp.util import ( from stack_orchestrator.deploy.webapp.util import (
AUCTION_STATUS_COMPLETED,
AUCTION_KIND_PROVIDER, AUCTION_KIND_PROVIDER,
AuctionStatus,
LaconicRegistryClient, LaconicRegistryClient,
) )
from dotenv import dotenv_values from dotenv import dotenv_values
@ -117,7 +117,7 @@ def command( # noqa: C901
fatal(f"Auction kind needs to be ${AUCTION_KIND_PROVIDER}, got {auction.kind}") fatal(f"Auction kind needs to be ${AUCTION_KIND_PROVIDER}, got {auction.kind}")
# Check auction status # Check auction status
if auction.status != AUCTION_STATUS_COMPLETED: if auction.status != AuctionStatus.COMPLETED:
fatal(f"Auction {auction_id} not completed yet, status {auction.status}") fatal(f"Auction {auction_id} not completed yet, status {auction.status}")
# Check that winner list is not empty # Check that winner list is not empty