We have a capture in one of our test API endpoints where the variable is named id. This is created as a function parameter and passed into the client function.
Ideally, we wouldn't overload any Python keywords, such as id, because it's gross and poor form.
Possibly check for membership in a list of keywords and rename if so.
We have a capture in one of our test API endpoints where the variable is named
id. This is created as a function parameter and passed into the client function.Ideally, we wouldn't overload any Python keywords, such as
id, because it's gross and poor form.Possibly check for membership in a list of keywords and rename if so.