Skip to content

Commit

Permalink
Zero idea what I'm doing
Browse files Browse the repository at this point in the history
  • Loading branch information
euanwm committed Mar 14, 2022
1 parent ad5b4eb commit 3dd15f1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sport80/sport80.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
""" Main file """
import logging
from .sport80_http_client import SportEightyHTTP


class SportEighty:
"""
This class enables a variety of functions that can be carried out with a sport80 subdomain.
"""
def __init__(self, subdomain: str):
self.__http_client = SportEightyHTTP(subdomain)
def __init__(self, subdomain: str, debug: logging):
self.__http_client = SportEightyHTTP(subdomain, debug_lvl=debug)

def event_index(self) -> list:
""" Shorthand call """
Expand Down

0 comments on commit 3dd15f1

Please sign in to comment.