Skip to content

Commit 851b06c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 235a870 commit 851b06c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

conversions/ascii_to_char.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
Input: 65
55
Output: A
66
"""
7+
8+
79
def ascii_to_char(ascii_val: int) -> str:
810
"""Convert ASCII value to corresponding character."""
911
return chr(ascii_val)

0 commit comments

Comments
 (0)