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
The Items() class is missing the update() method in the
I had a look at the OSRSBytes library thats installed in my virtual environment and it's missing the update method:
The Items.py file in the main and dev branch all have this method though and adding the snippet from the repo to the Items.py file in my virtual environment fixed this issue.
I installed the OSRSBytes library by running the pip install command
upgrading, uninstalling and reinstalling using pip did not fix the issue
I am running version 1.3.0 of OSRSBytes
Thanks,
The text was updated successfully, but these errors were encountered:
Correct. I believe at some point Dev got merged into Master unintentionally. Update() will be added in the 1.3.1 release. In addition, an easy work around would be to just initialize Items() again as such:
i = Items()
# do some stuff
i.isMembers("rune dagger")
# update items again
i = Items()
Hi
The Items() class is missing the update() method in the
I had a look at the OSRSBytes library thats installed in my virtual environment and it's missing the update method:
The Items.py file in the main and dev branch all have this method though and adding the snippet from the repo to the Items.py file in my virtual environment fixed this issue.
I installed the OSRSBytes library by running the pip install command
upgrading, uninstalling and reinstalling using pip did not fix the issue
I am running version 1.3.0 of OSRSBytes
Thanks,
The text was updated successfully, but these errors were encountered: