mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-21 20:47:10 +08:00
Fixes unused variable errors in LGTM (#1746)
* Fixes unsed variable errors in LGTM * Fixes integer check * Fixes failing tests
This commit is contained in:
@ -68,7 +68,6 @@ def points_to_polynomial(coordinates):
|
||||
# put the y values into a vector
|
||||
vector = []
|
||||
while count_of_line < x:
|
||||
count_in_line = 0
|
||||
vector.append(coordinates[count_of_line][1])
|
||||
count_of_line += 1
|
||||
|
||||
|
Reference in New Issue
Block a user