Skip to content
This repository was archived by the owner on Sep 7, 2024. It is now read-only.

Commit b15f7d0

Browse files
authored
0.0.4 and small formatting update (#11)
1 parent dd93aca commit b15f7d0

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="python_osrsapi",
8-
version="0.0.3",
8+
version="0.0.4",
99
author="Chasesc",
1010
description="Oldschool Runescape API wrapper",
1111
long_description=long_description,

tests/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-
# TODO

tests/test_hiscore_api.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66

77
class TestHiscore(unittest.TestCase):
88
def test_api_length(self):
9-
"""Check to see if the API returns the same number of skills, minigames, and bosses that are mentioned in const.py. If this test fails, the items in const.py need to be updated."""
9+
"""
10+
Check to see if the API returns the same number of skills, minigames, and bosses
11+
that are mentioned in const.py. If this test fails, the items in const.py
12+
need to be updated.
13+
"""
1014
score = Hiscores(username="Lelalt")
1115
expected_num_api_elements = SKILLS_AMT + MINIGAMES_AMT + BOSSES_AMT
1216
api_data = score._get_api_data()

0 commit comments

Comments
 (0)