Improve string formatting v5 (#33697)
* Improve string formatting v5 * Address review comments
This commit is contained in:
parent
39336d3ea3
commit
fca90a8ddc
46 changed files with 221 additions and 252 deletions
|
@ -233,9 +233,7 @@ def line_info(obj, **kwargs):
|
|||
"""Display line config source."""
|
||||
if hasattr(obj, "__config_file__"):
|
||||
return color(
|
||||
"cyan",
|
||||
"[source {}:{}]".format(obj.__config_file__, obj.__line__ or "?"),
|
||||
**kwargs,
|
||||
"cyan", f"[source {obj.__config_file__}:{obj.__line__ or '?'}]", **kwargs
|
||||
)
|
||||
return "?"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue