From 84fc2e3b930292ad2bedd58fedc2030d31f55bbb Mon Sep 17 00:00:00 2001 From: Scot Matson Date: Tue, 25 Jul 2017 17:44:46 -0700 Subject: [PATCH] Update UPGRADE-v2.0.md I believe this line was intended to be indented. --- UPGRADE-v2.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADE-v2.0.md b/UPGRADE-v2.0.md index 1877b8b9..3a356746 100644 --- a/UPGRADE-v2.0.md +++ b/UPGRADE-v2.0.md @@ -124,8 +124,8 @@ Example. Before: class UserInput(InputObjectType): id = ID() -def is_user_id(id): - return id.startswith('userid_') + def is_user_id(id): + return id.startswith('userid_') class Query(ObjectType): user = graphene.Field(User, input=UserInput())