diff --git a/.gitignore b/.gitignore index 369f96a..317d526 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ *.db *.csv -**/__pycache__/** \ No newline at end of file +**/**/*.pyc +*.spec +dist +build \ No newline at end of file diff --git a/othello_matching/__pycache__/main.cpython-312.pyc b/othello_matching/__pycache__/main.cpython-312.pyc index 9663c6e..f75ea78 100644 Binary files a/othello_matching/__pycache__/main.cpython-312.pyc and b/othello_matching/__pycache__/main.cpython-312.pyc differ diff --git a/othello_matching/main.py b/othello_matching/main.py index d54f366..2a690ff 100644 --- a/othello_matching/main.py +++ b/othello_matching/main.py @@ -1,6 +1,6 @@ from othello_matching import app from flask import render_template, request, redirect, url_for, jsonify -from .game_manager import GameManager +from othello_matching.game_manager import GameManager import json gm = GameManager()