Skip to content

Commit 5385af0

Browse files
fix(curriculum): change name of vairable from reserved keyword (freeCodeCamp#56636)
1 parent f37cd31 commit 5385af0

File tree

1 file changed

+2
-2
lines changed
  • curriculum/challenges/english/07-scientific-computing-with-python/learn-encapsulation-by-building-a-projectile-trajectory-calculator

1 file changed

+2
-2
lines changed

curriculum/challenges/english/07-scientific-computing-with-python/learn-encapsulation-by-building-a-projectile-trajectory-calculator/663353465bfb14259717da93.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The method should return the correct output.
4747
```js
4848
({
4949
test: () => assert(runPython(
50-
`str = """
50+
`a = """
5151
x y
5252
0 3.00
5353
1 3.90
@@ -65,7 +65,7 @@ The method should return the correct output.
6565
"""
6666
ball = Projectile(10, 3, 45)
6767
g = Graph(ball.calculate_all_coordinates())
68-
g.create_coordinates_table() == str`
68+
g.create_coordinates_table() == a`
6969
))
7070
})
7171
```

0 commit comments

Comments
 (0)