Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.
Prev Previous commit
Next Next commit
pep
  • Loading branch information
elena.totmenina committed Mar 20, 2020
commit 3f2db5c38f8dbdf87e15c69982f8772d918851ae
2 changes: 1 addition & 1 deletion sdc/datatypes/hpat_pandas_dataframe_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1780,7 +1780,7 @@ def _df_getitem_tuple_at_impl(self, idx):
if self.columns[i] == col:
check_col = True
col_idx = i
if check_col == True:
if check_col == True: # noqa
func_lines += [' row, _ = idx',
' check_row = False',
' for i in prange(len(self._dataframe.index)):',
Expand Down