Skip to content

Commit b487266

Browse files
committed
add str rep for QB Client
1 parent 0ca0490 commit b487266

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/quickbase_json/client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,8 @@ def get_tables(self, app_id: str):
105105

106106
headers = self.headers
107107
params = {'appId': f'{app_id}'}
108+
body = None
108109
return requests.post('https://api.quickbase.com/v1/tables', params=params, headers=headers, json=body).json()
110+
111+
def __str__(self):
112+
return f'Quickbase Client: {self.realm}'

0 commit comments

Comments
 (0)