MCPcopy Create free account
hub / github.com/ndleah/python-mini-project / getChessNotation

Method getChessNotation

Chess_Game/ChessEngine.py:217–218  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

215
216
217 def getChessNotation(self):
218 return self.getRankFile(self.startRow, self.startCol) + self.getRankFile(self.endRow, self.endCol)
219
220 def getRankFile(self, r, c):
221 return self.colsToFiles[c] + self.rowsToRanks[r]

Callers

nothing calls this directly

Calls 1

getRankFileMethod · 0.95

Tested by

no test coverage detected