We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Why have the ruling count saved as an int by the parser, when the serialiser has to do so much extra work to convert it back to a string? I.e.:
def getRulingType(self): typeArr = [ "single", "double", "triple"] try: return typeArr[self.count - 1] except TypeError: print("Error: Ruling count " + self.count + " must be an integer.") except IndexError: print("Error: Ruling count (" + self.count + ") is out of bounds (" + typeArr.__len__() + ").")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why have the ruling count saved as an int by the parser, when the serialiser has to do so much extra work to convert it back to a string? I.e.:
The text was updated successfully, but these errors were encountered: