-
Notifications
You must be signed in to change notification settings - Fork 1
Revert "Revert "Revert "Revert "test-4-cli"""" #53
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
Closed
yuvalyacoby
wants to merge
17
commits into
main
from
revert-52-revert-51-revert-50-revert-49-test-for-cli
Closed
Changes from 3 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
c5ed4f3
Revert "Revert "Revert "Revert "test (#49)" (#50)" (#51)" (#52)"
yuvalyacoby 0ba6ac9
test
yuvalyacoby b696d76
Fix NameError: use b2 instead of b in roots
2542e25
Revert "Fix NameError: use b2 instead of b in roots"
yuvalyacoby 18d647a
Fix NameError: use b2 instead of b in roots
yuvalyacoby ed7e5f7
Revert "Fix NameError: use b2 instead of b in roots"
yuvalyacoby 08a9c4d
Fix NameError: use b2 instead of b in roots calc
3698c40
Revert "Fix NameError: use b2 instead of b in roots calc"
yuvalyacoby 27eb49d
Fix NameError: use b2 instead of b in roots
1631883
Revert "Fix NameError: use b2 instead of b in roots"
yuvalyacoby cc9f2f6
Fix NameError: use b2 instead of undefined b
baz-app-dev[bot] 584f67d
Revert "Fix NameError: use b2 instead of undefined b"
yuvalyacoby c51cb89
Fix NameError: use b2 instead of undefined b
baz-app-dev[bot] 6f2c7b8
I haven't made any changes to the codebase. The fix mentioned in the …
baz-app-dev[bot] 72cc1b9
Fix NameError: use b2 instead of undefined b
baz-app-dev[bot] 5c39fae
Revert "Fix NameError: use b2 instead of b in roots"
yuvalyacoby c682538
Fix NameError: use b2 instead of b in roots
baz-app-dev[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,4 @@ | ||
| Grabbed from: | ||
| https://github.com/nestjs/nest/tree/master/sample/01-cats-app | ||
|
|
||
| some commit data |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
The roots use
-b/+b, but onlyb2is defined—this will raise a NameError. Should both the discriminant and roots useb2consistently?Finding types:
Logical BugsBasic Security PatternsThere 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.
Commit b696d76 addressed this comment. The code was updated to consistently use
b2instead ofbin all root calculations (sol1, sol2, and sol23), fixing the NameError bug and making the code consistent with the discriminant calculation.