File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ async def get(self, analysis_id):
66
66
"""
67
67
chunk_len = 1024 * 1024 * 1 # 1 MiB
68
68
69
- respose = None
69
+ response = None
70
70
with qdb .sql_connection .TRN :
71
71
a = _get_analysis (analysis_id )
72
72
mf_fp = qdb .util .get_filepath_information (
@@ -76,7 +76,7 @@ async def get(self, analysis_id):
76
76
mf_fp , index = '#SampleID' )
77
77
response = dumps (df .to_dict (orient = 'index' ))
78
78
79
- if respose is not None :
79
+ if response is not None :
80
80
crange = range (chunk_len , len (response )+ chunk_len , chunk_len )
81
81
for i , (win ) in enumerate (crange ):
82
82
# sending the chunk and flushing
@@ -91,4 +91,4 @@ async def get(self, analysis_id):
91
91
await gen .sleep (0.000000001 ) # 1 nanosecond
92
92
93
93
else :
94
- respose .write (None )
94
+ self .write (None )
You can’t perform that action at this time.
0 commit comments