We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73eae8a commit 726362aCopy full SHA for 726362a
1 file changed
cups2liter.py
@@ -7,9 +7,9 @@
7
# Liters = cups / 4.226753
8
# cups = liters * 4.226753
9
10
-def c2l(f_value):
+def c2l(f_value) -> float:
11
cups = float(f_value)
12
- liters = (cups / 4.226753)
+ liters: float = (cups / 4.226753)
13
return liters
14
15
0 commit comments