-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add skeleton classes Chess and Move #160
Conversation
|
||
def game_over(self) -> int: | ||
""" | ||
Checks if the game is over. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Usually you put the first line with the triple quotes. This usually looks better in the IDE.
"""Checks if the game is over.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Doug. It's fixed.
Currently the pytest fails with error:
E ModuleNotFoundError: No module named 'mock'
, while locally I installed package mock and all tests pass. How may I install this module in the online repository?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some final comments, then LGTM
Add initial version of class QuantumChineseChess, which
Add initial version of file move, which