added license info to boxprint
This commit is contained in:
parent
982ac88a72
commit
dee531fd51
@ -1,4 +1,12 @@
|
||||
def bordered(text):
|
||||
"""Add box around string.
|
||||
|
||||
taken from https://stackoverflow.com/a/20757491 under https://creativecommons.org/licenses/by-sa/4.0/
|
||||
https://stackoverflow.com/users/816449/bunyk
|
||||
"""
|
||||
|
||||
|
||||
def bordered(text: str) -> str:
|
||||
"""Add border to string."""
|
||||
lines = text.splitlines()
|
||||
width = max(len(s) for s in lines)
|
||||
res = ['┌' + '─' * width + '┐']
|
||||
|
Loading…
Reference in New Issue
Block a user