|
|
|
|
|
by wmedrano
738 days ago
|
|
ChatGPT gives the following: The code snippet has a subtle but significant issue in the default value of the id column. Here is the problematic part:
...
In this line, default=str(uuid.uuid4()) is evaluated only once at the time of the class definition, not each time a new StripeCustomer instance is created.... |
|
I expect ChatGPT wouldn't have been able to solve the issue given the entire codebase.