-
Notifications
You must be signed in to change notification settings - Fork 3k
solution #3467
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
base: master
Are you sure you want to change the base?
solution #3467
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,4 +16,8 @@ | |
| } | ||
| collection_of_coins = {1, 2, 25} | ||
|
|
||
| # write your code here | ||
|
|
||
| sorted_variables = { | ||
| "immutable": [pi, one_is_a_prime_number, lucky_number, name, profile_info], | ||
| "mutable" : [my_favourite_films, marks, collection_of_coins], | ||
| } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Style suggestion: flake8 reports an E127 over-indented continuation line around this dictionary. Reduce the indentation of the continued lines so they visually align under the opening brace/parenthesis (e.g., align keys/values under the first character after the '{'). This will resolve the E127 warning. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Process suggestion: the task asks you to read the external guideline before starting. Consider adding a brief comment at the top of the file (for example,
# Guideline reviewed) or a short commit message to indicate you reviewed it.