Fixes squiggle lines

This commit is contained in:
2025-04-15 11:26:59 +02:00
parent 67208a513e
commit ae67d53c5e
4 changed files with 14 additions and 4 deletions

View File

@@ -5,3 +5,7 @@ class Service(db.Model):
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String, nullable=False)
url = db.Column(db.String, nullable=False)
def __init__(self, name: str, url: str):
self.name = name
self.url = url