From 305be022dc55ff673a55ebec13dcbecdde0b679f Mon Sep 17 00:00:00 2001 From: Trevor Hobenshield Date: Fri, 21 Apr 2023 15:05:08 -0700 Subject: [PATCH] cleanup --- twitter/account.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/twitter/account.py b/twitter/account.py index 7175864..a746b3e 100644 --- a/twitter/account.py +++ b/twitter/account.py @@ -22,19 +22,6 @@ logging.config.dictConfig(log_config) logger = logging.getLogger(__name__) -class GraphQL: - def __init__(self, operation: tuple, variables: dict, features: dict = Operation.default_features): - self.operation = operation - self.variables = variables - self.features = features - - def get(self): - ... - - def post(self): - ... - - class Account: def __init__(self, email: str, username: str, password: str, *, save=True, debug: int = 0):