Skip to content

Commit 2e10285

Browse files
committed
Move title docstring from __init__.py to api.py
1 parent 17038d5 commit 2e10285

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

api.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
"""Used for accessing the Skyblock API."""
1+
"""
2+
### A simple API wrapper for Hypixel Skyblock.
3+
4+
(c) 2023-present NKA Development Organization
5+
"""
26
# Imports
37
import requests
48
from json import loads as parse
59

610
# Functions
711
class Skyblock:
12+
"""Used for accessing the Skyblock API."""
813
def __init__(self, api_key: str):
914
self.api_key = api_key
1015

0 commit comments

Comments
 (0)