Skip to content

Commit

Permalink
2025-01-08T23:10:28Z
Browse files Browse the repository at this point in the history
  • Loading branch information
wrmsr committed Jan 8, 2025
1 parent a767d4b commit 77be9db
Show file tree
Hide file tree
Showing 5 changed files with 859 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ominfra/clouds/aws/models/gen/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,9 @@ def gen_shape(
if not shape.members:
lines.append(' pass')

for mn, ms in shape.members.items():
for i, (mn, ms) in enumerate(shape.members.items()):
if i:
lines.append('')
fn = self.demangle_name(mn)
mds = [
f'member_name={mn!r}',
Expand Down
Loading

0 comments on commit 77be9db

Please sign in to comment.