Python appears to be passing then wrong object into a function
Here is my code I am trying to run # -*- coding: utf-8 -*- import pydealer from pokerlib import HandParser from pokerlib.enums import Value, Suit class Player: def __init__(self, name: str, chips=500): self.name = name self.hand = pydealer.Stack() self.fold = False self.matching_pot = True self.hand_rank = None if name == "AI": self.chips = 500 else:… Read More Python appears to be passing then wrong object into a function