Skip to content

Commit c39d1e8

Browse files
authored
Merge pull request #10 from musslick/feat/hex
change output type of 'hexadecimal' function
2 parents 046c9b8 + 95cc0cd commit c39d1e8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ def element_wise_multiply(a: np.array, b: np.array) -> np.array:
7373

7474
return np.multiply(a, b)
7575

76-
def return_hexadecimal(a: int) -> float:
76+
# change output type of return_hexadecimal function
77+
def return_hexadecimal(a: int) -> str:
7778
'''
7879
...
7980

0 commit comments

Comments
 (0)