Skip to content

The_Price_is_Right.py - In 'Bid' mode doesn't correctly identify cards within range #4

@Philville2

Description

@Philville2

Assuming bid mode means 'where I am bidding, find all cards where there is a sell price <= my current bid + HowClose' then line 73 should be changed from:

	if b.text == "ask" and BidOrAsk == "bid" and float(a.text) > float(userSetPrice[index])+float(HowClose):

to:

	if b.text == "ask" and BidOrAsk == "bid" and float(a.text) <= float(userSetPrice[index])+float(HowClose):

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions