This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
"""
|
|
tools that make printing stuff better
|
|
"""
|
|
def divider() -> str:
|
|
"""
|
|
Quickly get a one line visual divider
|
|
"""
|
|
...
|
|
|
|
def print_divider():
|
|
"""
|
|
Quickly print a one line visual divider
|
|
"""
|
|
...
|