mirror of
https://github.com/kevinveenbirkenbach/baserow-ifto.git
synced 2024-11-13 06:41:04 +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)
|