2024-06-14 19:14:12 +00:00
|
|
|
"""
|
|
|
|
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)
|
|
|
|
|