Closed ddugovic closed 4 years ago
Renaming the source file is fine with me.
On github CI, I need to understand it first. Read about it couple of days ago, but have not fully understood it yet.
If you submit a PR without CI, with filename rename, I will merge it.
Thanks.
Code linters and automated tests are useful for helping new developers get acquainted with a repository.
Python does not allow importing file names which contain hyphens, so producing testable artifacts (which import the main source files) requires either extracting pieces of the main python file, or renaming it (to allow other files to
import chess_artist
): https://stackoverflow.com/a/8350881