Compare commits

..

No commits in common. "v3" and "main" have entirely different histories.
v3 ... main

3 changed files with 2 additions and 18 deletions

View File

@ -1 +1,2 @@
# python hello-world # 461437dae6bf4fdd80b8c8a64b192c2a

15
main.py
View File

@ -1,15 +0,0 @@
def calculate_raise_summary(name: str, salary: float):
"""
Takes employee name and salary as input,
returns a yearly salary summary including a 15% raise.
"""
raise_percentage = 15
expected_raise = salary * (raise_percentage / 100)
new_salary = salary + expected_raise
return {
"employee_name": name,
"yearly_salary": round(salary, 2),
"expected_raise": round(expected_raise, 2),
"new_salary": round(new_salary, 2)
}

View File

@ -1,2 +0,0 @@
functions-framework==1.4.3
markupsafe==2.0.1