-
Notifications
You must be signed in to change notification settings - Fork 0
Version 0.8.8 #61
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
Version 0.8.8 #61
Conversation
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.
Copilot reviewed 21 out of 21 changed files in this pull request and generated 1 comment.
|
|
||
|
|
||
| def evaluate_modifiers(expression: str, environ: dict = os.environ): | ||
| def evaluate_modifiers(expression: str, environ: dict = os.environ, parent: dict = {}): |
Copilot
AI
Apr 13, 2025
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.
Avoid using a mutable default argument for 'parent'. Use 'None' as the default and assign a new dict inside the function instead.
Version 0.8.8 RC