Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Krasto committed Jan 18, 2024
1 parent 5c019d9 commit 045be91
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions ci_quixo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
from ._players import *
from .custom_game import CustomGame, Game
from .helper import evaluate
try:
from _players import *
from custom_game import CustomGame, Game
from helper import evaluate
except:
from ._players import *
from .custom_game import CustomGame, Game
from .helper import evaluate
import pytest

@pytest.mark.evaluate
Expand Down

0 comments on commit 045be91

Please sign in to comment.