mirror of
https://github.com/kevinveenbirkenbach/baserow-ifto.git
synced 2024-11-01 09:33:11 +01:00
13 lines
247 B
Python
13 lines
247 B
Python
import json
|
|
|
|
def print_error_message(message):
|
|
print(f"Error: {message}")
|
|
|
|
def print_json_output(data):
|
|
print(json.dumps(data, indent=4))
|
|
|
|
def print_verbose_message(message, data=None):
|
|
print(message)
|
|
if data:
|
|
print(data)
|