From 8e9982b70c7cc8346fa0da6a1790dab47e5f181d Mon Sep 17 00:00:00 2001 From: fspreck <f.spreckelsen@indiscale.com> Date: Mon, 31 May 2021 17:11:17 +0200 Subject: [PATCH] STY: autopep'd --- examples/set_permissions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/set_permissions.py b/examples/set_permissions.py index 3d901295..64923af2 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() -- GitLab