Skip to content

Commit

Permalink
chore: fixed a variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Jun 28, 2024
1 parent 99f6c4e commit 2a72375
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avro/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,15 +208,15 @@ def _reverse_backend_ext(text: str) -> str:
return output[0] if len(output) == 1 else output


def _rearrange_unicode_text(string: str) -> str:
def _rearrange_unicode_text(text: str) -> str:
"""
Rearranges Unicode (Avro) text to match conversion standards for ASCII.
Returns the rearranged string.
"""

# Convert the string to a list of individual characters.
chars = list(string)
chars = list(text)
length = len(chars)
barrier = 0

Expand Down

0 comments on commit 2a72375

Please sign in to comment.