-
Notifications
You must be signed in to change notification settings - Fork 117
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
TypeError: unsupported operand type(s) for /: 'Dimension' and 'int' #36
Comments
I get the same issue. |
True. |
@leo19980219 @finde File "test_pgn.py", line 112, in main |
I have resolved this issue. It's because python version difference. xrange() is function in python 2.x which can be replaced with range() if you are using python 3.x. so just replace xrange() with range(). |
replace / to // |
I run the code test_pgn.py ,but I come across this problem TypeError: unsupported operand type(s) for /: 'Dimension' and 'int'
The text was updated successfully, but these errors were encountered: