Add typing to maths/abs.py (#7060)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
"""Absolute Value."""
|
||||
|
||||
|
||||
def abs_val(num):
|
||||
def abs_val(num: float) -> float:
|
||||
"""
|
||||
Find the absolute value of a number.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user