Skip to content

Commit

Permalink
fixed problem with the docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
hitblast committed Aug 8, 2024
1 parent 761ae08 commit ff992af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions avro/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def output_generator() -> Generator[str, None, None]:

def to_bijoy(*texts: str) -> Union[str, List[str]]:
"""
#### Converts input text to Bijoy Keyboard format (ASCII).
#### Converts input text (Avro, Unicode) to Bijoy Keyboard format (ASCII).
If a valid conversion is found, then it returns the converted string.
Expand Down Expand Up @@ -146,7 +146,7 @@ def _convert_backend(text: str) -> str:

def to_unicode(*texts):
"""
#### Converts input text to Unicode (Avro Keyboard format).
#### Converts input text (Bijoy Keyboard, ASCII) to Unicode (Avro Keyboard format).
If a valid conversion is found, then it returns the converted string.
Expand All @@ -157,7 +157,7 @@ def to_unicode(*texts):
```python
import avro
converted = avro.to_unicode('amar sonar bangla')
converted = avro.to_unicode('Avwg evsjvh় Mvb MvB;')
print(converted)
```
"""
Expand Down

0 comments on commit ff992af

Please sign in to comment.