diff --git a/examples/set_permissions.py b/examples/set_permissions.py index 3d9012959fb036705ef9b086af35489238360c14..64923af2423ee6909b1d8893ae6285bc3fc0fe47 100755 --- a/examples/set_permissions.py +++ b/examples/set_permissions.py @@ -206,7 +206,8 @@ def create_test_entities(): After calling this function, there will be a RecordType "Human Food" with the corresponding Records "Bread", "Tomatoes", and "Twinkies" inserted in the database. """ - rt = db.RecordType(name="Human Food", description="Food that can be eaten only by humans").insert() + rt = db.RecordType( + name="Human Food", description="Food that can be eaten only by humans").insert() food = ("Bread", "Tomatoes", "Twinkies") cont = db.Container()