Correct Name in Models.py

Corrected 'Georg' to 'George'
This commit is contained in:
MichaelGerrish 2022-07-16 09:30:39 -07:00 committed by GitHub
parent e9b7426a98
commit ec3fb3afb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -521,7 +521,7 @@ class Project(db.Model):
db.session.commit() db.session.commit()
members = {} members = {}
for name in ("Amina", "Georg", "Alice"): for name in ("Amina", "George", "Alice"):
person = Person() person = Person()
person.name = name person.name = name
person.project = project person.project = project
@ -533,9 +533,9 @@ class Project(db.Model):
db.session.commit() db.session.commit()
operations = ( operations = (
("Georg", 200, ("Amina", "Georg", "Alice"), "Food shopping"), ("George", 200, ("Amina", "George", "Alice"), "Food shopping"),
("Alice", 20, ("Amina", "Alice"), "Beer !"), ("Alice", 20, ("Amina", "Alice"), "Beer !"),
("Amina", 50, ("Amina", "Alice", "Georg"), "AMAP"), ("Amina", 50, ("Amina", "Alice", "George"), "AMAP"),
) )
for (payer, amount, owers, what) in operations: for (payer, amount, owers, what) in operations:
db.session.add( db.session.add(