We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running yapf 0.24.0
Given the code:
include_values = np.where( (cdffile['Quality_Flag'][:] >= 5) & ( cdffile['Day_Night_Flag'][:] == 1) & ( cdffile['Longitude'][:] >= select_lon - radius) & ( cdffile['Longitude'][:] <= select_lon + radius) & ( cdffile['Latitude'][:] >= select_lat - radius) & ( cdffile['Latitude'][:] <= select_lat + radius))
Yapf formats as:
include_values = np.where((cdffile['Quality_Flag'][:] >= 5) & ( cdffile['Day_Night_Flag'][:] == 1) & ( cdffile['Longitude'][:] >= select_lon - radius) & ( cdffile['Longitude'][:] <= select_lon + radius) & ( cdffile['Latitude'][:] >= select_lat - radius) & ( cdffile['Latitude'][:] <= select_lat + radius))
It seems that the extra level of indentation on this is very messy. Shouldn't this format in the same way as long "+-*/" codes?
The text was updated successfully, but these errors were encountered:
e2ce893
No branches or pull requests
Running yapf 0.24.0
Given the code:
Yapf formats as:
It seems that the extra level of indentation on this is very messy. Shouldn't this format in the same way as long "+-*/" codes?
The text was updated successfully, but these errors were encountered: