File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ def get(self):
78
78
class SingleFigurePage (tornado .web .RequestHandler ):
79
79
def __init__ (self , application , request , ** kwargs ):
80
80
self .url_prefix = kwargs .pop ('url_prefix' , '' )
81
- return tornado .web .RequestHandler .__init__ (self , application ,
82
- request , ** kwargs )
81
+ tornado .web .RequestHandler .__init__ (self , application ,
82
+ request , ** kwargs )
83
83
84
84
def get (self , fignum ):
85
85
fignum = int (fignum )
@@ -98,8 +98,8 @@ def get(self, fignum):
98
98
class AllFiguresPage (tornado .web .RequestHandler ):
99
99
def __init__ (self , application , request , ** kwargs ):
100
100
self .url_prefix = kwargs .pop ('url_prefix' , '' )
101
- return tornado .web .RequestHandler .__init__ (self , application ,
102
- request , ** kwargs )
101
+ tornado .web .RequestHandler .__init__ (self , application ,
102
+ request , ** kwargs )
103
103
104
104
def get (self ):
105
105
ws_uri = 'ws://{req.host}{prefix}/' .format (req = self .request ,
You can’t perform that action at this time.
0 commit comments