Skip to content

Minor change proposals #331

New issue

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

Merged
merged 3 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ help us at all. Therefore, use `Any` only when necessary.
def f(x: None | Iterable[int]):
```

because both `list`, `tuple` and `dict` are iterables and therefore can be covered by one type
because all `list`, `tuple` and `dict` are iterables and therefore can be covered by one type
(in this specific case).

This ends the module on coding style. We again want to emphazize that a good coding style is more about having a
Expand Down
2 changes: 1 addition & 1 deletion s6_the_cloud/using_the_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ to inject secrets into our code without having to store them in the code itself.
args:
- '-c'
- |
cat config.yaml
cat config.yaml

- name: 'gcr.io/cloud-builders/gcloud'
id: 'Train on vertex AI'
Expand Down
Loading