data-transport/transport/other/console.py

10 lines
237 B
Python
Raw Normal View History

"""
This class uses classback pattern to allow output to be printed to the console (debugging)
"""
2024-03-28 20:34:39 +00:00
from . import callback
class Writer (callback.Writer):
def __init__(self,**_args):
super().__init__(callback=print)