-
Notifications
You must be signed in to change notification settings - Fork 0
Internal refactoring: replacing iterative logic with a recursive implementation. #7
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
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
dc8852f
re-impl
fhalde a536473
reimpl
fhalde 8ae89f4
reimpl
fhalde 98ce57e
reimpl
fhalde e2089d5
reimpl
fhalde ef565ad
reimpl
fhalde 1065888
reimpl
fhalde 4a83870
reimpl
fhalde 73b6240
reimpl
fhalde 524e53e
reimpl
fhalde 480d9de
reimpl
fhalde 844699e
reimpl
fhalde 0ae000f
reimpl
fhalde ad36dd5
reimpl
fhalde c807eb0
reimpl
fhalde 07f480c
reimpl
fhalde 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,3 +8,4 @@ wheels/ | |
|
|
||
| # Virtual environments | ||
| .venv | ||
| .vscode | ||
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,3 +1,3 @@ | ||
| from .core import AsyncJsonFeed, AsyncJsonNode, jsontap | ||
| from .main import jsontap | ||
|
|
||
| __all__ = ["jsontap", "AsyncJsonNode", "AsyncJsonFeed"] | ||
| __all__ = ["jsontap"] |
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.
🧩 Analysis chain
🏁 Script executed:
Repository: fhalde/jsontap
Length of output: 168
🏁 Script executed:
Repository: fhalde/jsontap
Length of output: 1296
🏁 Script executed:
Repository: fhalde/jsontap
Length of output: 529
🏁 Script executed:
Repository: fhalde/jsontap
Length of output: 1255
🏁 Script executed:
Repository: fhalde/jsontap
Length of output: 1752
Remove
attr>=0.3.2from dependencies—it is unused and conflicts withattrs.The codebase only imports and uses
attrs(specificallyfrom attrs import define, fieldinsrc/jsontap/store.py). Theattrpackage is never referenced anywhere in the project. Sinceattris the legacy, unmaintained package (last updated July 2022) andattrsis the modern successor, keeping both creates unnecessary namespace collision risk and increases the supply-chain surface area without providing any value.🔧 Proposed fix
dependencies = [ - "attr>=0.3.2", "attrs>=25.4.0", "ijson>=3.5.0", ]📝 Committable suggestion
🤖 Prompt for AI Agents