fix(curriculum): fix function name step 66 password generator project (#54101)

This commit is contained in:
Dario-DC
2024-03-14 21:24:22 +01:00
committed by GitHub
parent 9fe3efe55c
commit bc8f07fee4

View File

@@ -15,7 +15,7 @@ You can call a function using keyword arguments, that is writing the parameter n
def add(x, y):
return x + y
spam(x=1, y=7) # 8
add(x=1, y=7) # 8
```
Modify your function call to use keyword arguments.