generated from PlexSheep/baserepo
15 lines
224 B
Python
15 lines
224 B
Python
|
"""
|
||
|
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
|
||
|
"""
|
||
|
...
|