Skip to content

Commit

Permalink
Update gcloud.py for current Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
fweikert committed Oct 31, 2024
1 parent 24e2af9 commit d077d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildkite/gcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def debug(*args, **kwargs):


def is_sequence(seq):
return isinstance(seq, collections.Sequence) and not isinstance(seq, str)
return isinstance(seq, collections.abc.Sequence) and not isinstance(seq, str)


def gcloud(*args, **kwargs):
Expand Down

0 comments on commit d077d51

Please sign in to comment.