From cae2ba88864f22d6a142c924b00a0c41fb2f230a Mon Sep 17 00:00:00 2001 From: Jason Kraus Date: Mon, 21 Oct 2019 12:57:52 -0700 Subject: [PATCH] remove dangling comment --- graphene_django/filter/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/filter/utils.py b/graphene_django/filter/utils.py index 411a3d0..19fd46b 100644 --- a/graphene_django/filter/utils.py +++ b/graphene_django/filter/utils.py @@ -11,7 +11,7 @@ def get_field_parts_with_expression(model, field_name, lookup_expr): Traverses the model with a given query expression, returns the found fields along the path and the remaining expression """ - parts = field_name.split(LOOKUP_SEP) # + lookup_expr.split(LOOKUP_SEP) + parts = field_name.split(LOOKUP_SEP) lparts = lookup_expr.split(LOOKUP_SEP) opts = model._meta fields = []