Fix commenting 500 from blackjack.py.

Apparently the blackjack code didn't have the global constants.
And was breaking everything when checking `FEATURES`.
remotes/1693045480750635534/spooky-22
Snakes 2022-07-18 05:05:48 -04:00
parent 001caf0c98
commit 82de9657e9
Signed by: Snakes
GPG Key ID: E745A82778055C7E
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
from json.encoder import INFINITY
import random
from math import floor
from files.helpers.const import *
deck_count = 4
ranks = ("2", "3", "4", "5", "6", "7", "8", "9", "X", "J", "Q", "K", "A")