Skip to content

Commit 04aa1ac

Browse files
bites 203 - fix type hinting
1 parent a8d5b29 commit 04aa1ac

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

203/type_hinting.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,7 @@ def __init__(self, first_name, last_name, days_per_week,
2525
self.hours_per_day = hours_per_day
2626
self.wage = wage
2727

28-
number: float
29-
places: int
30-
31-
def _rounder(self, number, places) -> str:
28+
def _rounder(self, number:float, places:int) -> str:
3229
"""Rounds a number the specified number of places
3330
3431
:param number: Float of number of round

0 commit comments

Comments
 (0)