Skip to content

Commit

Permalink
Fix warning in pandas 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alifbe committed Nov 19, 2024
1 parent 16807f3 commit 8acb488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subscript/bjobsusers/bjobsusers.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def show_status(status: str = "RUN", title: str = "Running", umax: int = 10) ->
print("--------------")
for user, count in dframe.iterrows():
print(
count[0],
count.iloc[0],
userinfo( # lgtm [py/clear-text-logging-sensitive-data]
str(user), call_pinky
),
Expand Down

0 comments on commit 8acb488

Please sign in to comment.