We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad5b4eb commit 3dd15f1Copy full SHA for 3dd15f1
1 file changed
sport80/sport80.py
@@ -1,13 +1,14 @@
1
""" Main file """
2
+import logging
3
from .sport80_http_client import SportEightyHTTP
4
5
6
class SportEighty:
7
"""
8
This class enables a variety of functions that can be carried out with a sport80 subdomain.
9
- def __init__(self, subdomain: str):
10
- self.__http_client = SportEightyHTTP(subdomain)
+ def __init__(self, subdomain: str, debug: logging):
11
+ self.__http_client = SportEightyHTTP(subdomain, debug_lvl=debug)
12
13
def event_index(self) -> list:
14
""" Shorthand call """
0 commit comments