-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: Fix many indentation errors found in #6643. #6646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -1,85 +1,87 @@ | |||
# reasonably efficient | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fyi, I don't think this script is used anywhere.....
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, that means I won't worry about removing list
from sorted(list(...))
..
@dsm054 can you rebase (and remove the sql stuff)...then can merge |
@dsm054 can you rebase this.... |
@dsm054 want to rebase this? |
Okay, this is the next one up. |
c_dtype='O' | ||
recons.columns = np.array(lmap(Timestamp,recons.columns), | ||
df.index = np.array(lmap(_to_uni,df.index),dtype=r_dtype) | ||
if r_dtype == 'dt': # unicode |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be elif
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think so -- otherwise won't the else
always be taken if r_dtype=='u'? And the parallel if c_dtype:
version has elif:
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we want to fix that, I can make a separate one-line PR.
CLN: Fix many indentation errors found in #6643.
ok make a one liner for that elif change pls |
Changes should only affect whitespace.
closes #6643