You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Happened with me on 2nd run. Was just playing around on the first run :)
tiptop
Traceback (most recent call last):
File "/opt/homebrew/bin/tiptop", line 8, in <module>
sys.exit(run())
^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/tiptop/_app.py", line 100, in run
TiptopApp.run(log=args.log)
TypeError: App.run() got an unexpected keyword argument 'log'
The text was updated successfully, but these errors were encountered:
The reason behind this error is that you have incompatible version of the textual library.
The tiptop depends on textual >=0.1.15, <0.2 and in textual 0.2.0 there is change in App.run() function, it doesn't accept log argument anymore. So any newer version will give you this error.
It is the packaging issue, so I suggest you to describe how did you install the application and to create the issue for the packager.
Personally I faced with the same error in the AUR package tiptop-cli and seems like it doesn't respect dependency versions.
At the moment I have local/python-textual 0.40.0-1
As I see in the README.md, the only recommended way of installing is using pip. I have successful installation using pipx too.
Happened with me on 2nd run. Was just playing around on the first run :)
The text was updated successfully, but these errors were encountered: