Skip to content

Commit

Permalink
fix: ai_strategy.py: missing logger declaration fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
bananabr3d committed Mar 14, 2024
1 parent 36bc0d3 commit 7a16d2a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions AI/ai_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
import logging
import copy

# Set up logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
class AIStrategy(ABC, GameClient):

"""
Expand Down

0 comments on commit 7a16d2a

Please sign in to comment.