Skip to content

Commit

Permalink
Update review guidance for fix-mutable-params
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Sep 28, 2023
1 parent e2dabb5 commit b80bdd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core_codemods/fix_mutable_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

class FixMutableParams(BaseCodemod):
NAME = "fix-mutable-params"
SUMMARY = "Replace mutable parameters with None"
REVIEW_GUIDANCE = ReviewGuidance.MERGE_AFTER_CURSORY_REVIEW
DESCRIPTION = "Replace mutable parameters with None"
SUMMARY = "Replace Mutable Default Parameters"
REVIEW_GUIDANCE = ReviewGuidance.MERGE_WITHOUT_REVIEW
DESCRIPTION = "Replace mutable parameter with None"

_BUILTIN_TO_LITERAL = {
"list": cst.List(elements=[]),
Expand Down

0 comments on commit b80bdd9

Please sign in to comment.