Skip to content

CAT 032

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-032 — split.first → split_limit

Field Value
Severity info
Confidence medium
Auto-fix

split.first → split_limit — If only the first segment is needed, use .split with a limit argument to avoid parsing the entire string.

Bad code

str.split(":").first

Clone this wiki locally