-
Notifications
You must be signed in to change notification settings - Fork 0
Update main.py #93
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: main
Are you sure you want to change the base?
Update main.py #93
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -5,5 +5,7 @@ | |||||
| print("Hello world") | ||||||
| print("Wanda testing preflight 1.11.5 - migrations") | ||||||
| print("Wanda testing preflight 1.11.5 - migrations!") | ||||||
|
|
||||||
|
|
||||||
| print("Wanda testing preflight 1.11.5 - migrations!") | ||||||
| print('this is python') | ||||||
| print('is it still python?') | ||||||
| here's a comment | ||||||
|
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. Fix invalid comment syntax. The line is missing the '#' prefix required for Python comments, which will cause a syntax error. - here's a comment
+ # here's a comment📝 Committable suggestion
Suggested change
🧰 Tools🪛 Ruff (0.8.2)11-11: SyntaxError: missing closing quote in string literal 11-12: SyntaxError: Expected a statement |
||||||
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.
🛠️ Refactor suggestion
Remove duplicate print statement.
This line is an exact duplicate of line 7. Removing it will improve code maintainability.
- print("Wanda testing preflight 1.11.5 - migrations!")📝 Committable suggestion