Method: rich.box.Box.get_plain_headed_box
Calls: 12, Exceptions: 0, Paths: 1Back
Path 1: 12 calls (1.0)
Box (12)
1def get_plain_headed_box(self) -> "Box":
2 """If this box uses special characters for the borders of the header, then
3 return the equivalent box that does not.
4
5 Returns:
6 Box: The most similar Box that doesn't use header-specific box characters.
7 If the current Box already satisfies this criterion, then it's returned.
8 """
9 return PLAIN_HEADED_SUBSTITUTIONS.get(self, self)