We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71f990f commit 404e640Copy full SHA for 404e640
table2ascii/table_style.py
@@ -128,8 +128,8 @@ def from_string(cls, string: str) -> "TableStyle":
128
raise TableStyleTooLongError(string, num_params)
129
# if the string is too short, show a warning and pad it with spaces
130
elif len(string) < num_params:
131
- string += " " * (num_params - len(string))
132
warnings.warn(TableStyleTooShortWarning(string, num_params), stacklevel=2)
+ string += " " * (num_params - len(string))
133
return cls(*string)
134
135
def set(self, **kwargs) -> "TableStyle":
0 commit comments