File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ def __init__(self, api):
6
6
7
7
def create_inferred_rel (self , ** kwargs ):
8
8
input = kwargs .get ("input" , None )
9
- self .api .app_logger .info (
10
- "Creating inferred rel" , {"input" : input }
11
- )
9
+ self .api .app_logger .info ("Creating inferred rel" , {"input" : input })
12
10
query = """
13
11
mutation inferredRelationAdd($jsonInput: String!) {
14
12
inferredRelationAdd(jsonInput: $jsonInput)
@@ -18,9 +16,7 @@ def create_inferred_rel(self, **kwargs):
18
16
19
17
def create_inferred_entity (self , ** kwargs ):
20
18
input = kwargs .get ("input" , None )
21
- self .api .app_logger .info (
22
- "Creating inferred rel" , {"input" : input }
23
- )
19
+ self .api .app_logger .info ("Creating inferred rel" , {"input" : input })
24
20
query = """
25
21
mutation inferredRelationAdd($jsonInput: String!) {
26
22
inferredRelationAdd(jsonInput: $jsonInput)
You can’t perform that action at this time.
0 commit comments