revert unintended staticmethod change

This commit is contained in:
foamyguy 2025-07-09 15:43:40 -05:00
parent 88eab38eef
commit 48cc56aed5
2 changed files with 3 additions and 3 deletions

View file

@ -117,7 +117,8 @@ class ColorTerminal:
beep_wave_file = open(bell_audio_file, "rb")
self.beep_wave = WaveFile(beep_wave_file)
def parse_ansi_colors(self, text):
@staticmethod
def parse_ansi_colors(text):
"""
Parse ANSI color escape codes from a string.
@ -205,7 +206,7 @@ class ColorTerminal:
:param s: The string to write.
"""
clean_message, color_map = self.parse_ansi_colors(s)
clean_message, color_map = ColorTerminal.parse_ansi_colors(s)
ordered_color_change_indexes = sorted(color_map.keys())
cur_change_index = 0

View file

@ -94,7 +94,6 @@ ignore = [
"PLW1514", # unspecified-encoding
"PLR0913", # too many args
"PLR0917", # too many positional args
"PLR6301", # method could be function
]