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
After sucessful installation of the program using protocol provided, I receive the following error:
#$ AMDock
Traceback (most recent call last):
File "/home/anaconda3/envs/AMDock/bin/AMDock", line 8, in <module>
sys.exit(run())
^^^^^
File "/home/anaconda3/envs/AMDock/lib/python3.11/site-packages/AMDock/Docking_Program.py", line 160, in run
splash = SplashScreen(QPixmap(v.splashscreen_path), app)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/anaconda3/envs/AMDock/lib/python3.11/site-packages/AMDock/splash_screen.py", line 37, in __init__
progress_bar.setValue(ml)
TypeError: setValue(self, value: int): argument 1 has unexpected type 'float'
Do you think this can be fixed by converting the float value to an integer?
progress_bar.setValue(int(ml))
A second option but long-winded one I see is using different Splash widget altogether.
The text was updated successfully, but these errors were encountered:
After sucessful installation of the program using protocol provided, I receive the following error:
Do you think this can be fixed by converting the float value to an integer?
progress_bar.setValue(int(ml))
A second option but long-winded one I see is using different Splash widget altogether.
The text was updated successfully, but these errors were encountered: