-
Notifications
You must be signed in to change notification settings - Fork 769
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
Reduce cognitive complexity and typo fixes #1457
Open
lilac-supernova-2
wants to merge
21
commits into
graphql-python:main
Choose a base branch
from
lilac-supernova-2:reduce-cognitive-complexity-and-typo-fixes
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
ad447d9
Remove unnecessary if statement
lilac-supernova-2 0e1b605
Keep 'if' above same as before, fix lint issue
lilac-supernova-2 cd6e042
Fix Star Wars spaceship name
lilac-supernova-2 ea77bc7
Fix some typos in comments
lilac-supernova-2 6580228
Rename filename with typo
lilac-supernova-2 1b00e67
Update import
lilac-supernova-2 5c52096
Snake case fixes
lilac-supernova-2 2a888ac
Add possibly missing import of DjangoFilterConnectionField
lilac-supernova-2 b639034
Actually, let's not do this to avoid circular imports
lilac-supernova-2 d873220
Remove nesting for readability
lilac-supernova-2 67373c7
Rename function
lilac-supernova-2 722daf1
Typo fixes
lilac-supernova-2 34e61c6
More typo fixes
lilac-supernova-2 988b308
Refactor get_filtering_args_from_filterset into more functions to red…
lilac-supernova-2 cb92d6e
Add new tests-repeat command to Makefile to be able to run unit tests…
lilac-supernova-2 19d5558
Add 'self' argument
lilac-supernova-2 34db851
Snake case formatting fix
lilac-supernova-2 98fd498
Refactor validation function to reduce complexity
lilac-supernova-2 a94a89d
Linting
lilac-supernova-2 59c0117
Refactor execute_graphql_request function to reduce complexity
lilac-supernova-2 e263840
Linting
lilac-supernova-2 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 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 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 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 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 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
File renamed without changes.
This file contains 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 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 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 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 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 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 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
Oops, something went wrong.
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 convention for the
resolve_*
methods for anObjectType
(whichConnection
is) is to useparent
as the first argument, notself
, since these are "implicit static methods": https://docs.graphene-python.org/en/latest/types/objecttypes/#naming-convention