File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def isinstance(self, cls):
2020 return self .cls .issubclass (cls )
2121
2222 def send (self , methname , * args ):
23- """ send message 'methname' with arguments ` args` to object """
23+ """ send message 'methname' with arguments ' args' to object """
2424 meth = self .cls ._read_from_class (methname )
2525 return meth (self , * args )
2626
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def isinstance(self, cls):
2828 return self .cls .issubclass (cls )
2929
3030 def send (self , methname , * args ):
31- """ send message 'methname' with arguments ` args` to object """
31+ """ send message 'methname' with arguments ' args' to object """
3232 meth = self .read_attr (methname )
3333 return meth (* args )
3434
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def isinstance(self, cls):
3232 return self .cls .issubclass (cls )
3333
3434 def send (self , methname , * args ):
35- """ send message 'methname' with arguments ` args` to object """
35+ """ send message 'methname' with arguments ' args' to object """
3636 meth = self .read_attr (methname )
3737 return meth (* args )
3838
You can’t perform that action at this time.
0 commit comments