diff --git a/src/core_codemods/remove_module_global.py b/src/core_codemods/remove_module_global.py index 8bbe67b5..1b404093 100644 --- a/src/core_codemods/remove_module_global.py +++ b/src/core_codemods/remove_module_global.py @@ -7,9 +7,9 @@ class RemoveModuleGlobal(BaseCodemod, NameResolutionMixin): NAME = "remove-module-global" - SUMMARY = "Remove Module-level Global Call" + SUMMARY = "Remove `global` Usage at Module Level" REVIEW_GUIDANCE = ReviewGuidance.MERGE_WITHOUT_REVIEW - DESCRIPTION = "Remove Lines with `global` keyword at Module Level" + DESCRIPTION = "Remove `global` usage at module level." REFERENCES: list = [] def leave_Global(