Skip to content
Snippets Groups Projects
Commit b0d8d490 authored by Bert Palm's avatar Bert Palm 🎇
Browse files

fix GL391

parent 7e2ff8a5
No related branches found
No related tags found
3 merge requests!685Release 2.4,!684Release 2.4,!612fix GL391
Pipeline #146232 passed with stages
in 8 minutes and 42 seconds
......@@ -1179,8 +1179,9 @@ def pprint_dios(
# stringified values of the series upto max_rows+1, where
# the additional row is the column-name
outer = []
for colname in data.index:
s = data.at[colname]
for i, colname in enumerate(data.index):
# use iat instead of at, see #GL391
s = data.iat[i]
isempty = s.empty
if isempty:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment