Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*.db
*.csv
**/__pycache__/**
**/**/*.pyc
*.spec
dist
build
Binary file modified othello_matching/__pycache__/main.cpython-312.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion othello_matching/main.py
Original file line number Diff line number Diff line change
@@ -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()
Expand Down