-
-
Notifications
You must be signed in to change notification settings - Fork 37
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: 'NoneType' object is not callable on FreeBSD #98
Labels
Comments
what's the output of this? import sys, tqdm
print(sys.platform)
print(tqdm.utils._screen_shape_linux(sys.stdout)) |
Python 3.11.9 (main, Jul 11 2024, 01:05:32) [Clang 16.0.6 (https://github.com/llvm/llvm-project.git llvmorg-16.0.6-0-g7cbf1a on freebsd14
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys, tqdm
>>> print(sys.platform)
freebsd14
>>> print(tqdm.utils._screen_shape_linux(sys.stdout))
(152, 45) |
This should be fixed now if you upgrade to |
It works, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FreeBSD 14.1, Python 3.11. I get:
Any ideas what to do?
The text was updated successfully, but these errors were encountered: