| 84 | |
| 85 | |
| 86 | class TruncationStrategy(ExplicitEnum): |
| 87 | ONLY_FIRST = "only_first" |
| 88 | ONLY_SECOND = "only_second" |
| 89 | LONGEST_FIRST = "longest_first" |
| 90 | DO_NOT_TRUNCATE = "do_not_truncate" |
| 91 | |
| 92 | |
| 93 | class PaddingStrategy(ExplicitEnum): |
no outgoing calls
no test coverage detected