diff options
author | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-10-02 23:21:43 +0200 |
---|---|---|
committer | niliara-edu <nil.jimeno@estudiant.fjaverianas.com> | 2024-10-02 23:21:43 +0200 |
commit | 7df09f8b146ae7fb091787770fe5681381164f0e (patch) | |
tree | 0310d8dad1d0c6198d68d13b22030db3c5e8b28f /scripts/populate/structures.py | |
parent | 0972fa6eab8c9111311f082ba8abfdc6b4a40945 (diff) |
fix database setup
Diffstat (limited to 'scripts/populate/structures.py')
-rw-r--r-- | scripts/populate/structures.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/populate/structures.py b/scripts/populate/structures.py index 31feb1b..b6cd8cd 100644 --- a/scripts/populate/structures.py +++ b/scripts/populate/structures.py @@ -5,7 +5,7 @@ class song: class album: - def __init__(self, name, cover, songs, artist_id, release=None): + def __init__(self, name, cover, songs, artist_id, release = None): self.name = name self.cover = cover self.songs = songs |