mirror of
https://github.com/kevinveenbirkenbach/baserow-ifto.git
synced 2024-11-10 13:21:05 +01:00
8 lines
217 B
Python
8 lines
217 B
Python
class ApiRepository:
|
|
def __init__(self, api, verbose=False):
|
|
self.api = api
|
|
self.verbose = verbose
|
|
|
|
def print_verbose_message(self, message):
|
|
if self.verbose:
|
|
print(message) |