Pass childs to childs attribute

This commit is contained in:
clerie 2022-01-16 13:47:06 +01:00
parent c63ecf7781
commit 1b0a5caa1b
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class DictRequest(Request):
def __init__(self, name, attrs={}, childs={}):
self.name = name
self.attrs = attrs
self.childs = attrs
self.childs = childs
class Response: