From 7c17d929fa05d75ab3a0783babeb51540c6867f7 Mon Sep 17 00:00:00 2001 From: Santiago Lamora Date: Tue, 17 Dec 2019 13:04:09 +0100 Subject: [PATCH] Fix OrchestraModel `__str__` method. --- musician/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/musician/models.py b/musician/models.py index 68ef088..4fae5bd 100644 --- a/musician/models.py +++ b/musician/models.py @@ -7,7 +7,7 @@ class OrchestraModel: api_name = None verbose_name = None fields = () - param_defaults = {} + id = None def __init__(self, **kwargs): if self.verbose_name is None: