Python DRY
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameInstall this rule for wispbit Cloud
Add this rule to wispbit and it will run when you open a pull request
Install this rule with wispbit CLI
Run this command in your terminal to install the rule locally
Install this rule for Coderabbit
Copy the configuration below and add it to your repository as .coderabbit.yml in your project root.
reviews: path_instructions: - path: "*.py" instructions: | Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined. Bad: ```python # Duplicated class definitions class User: def __init__(self, id: str, name: str): self.id = id self.name = name class UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name # Magic numbers repeated page_size = 10 items_per_page = 10 ``` Good: ```python # Reusable class and constant class User: def __init__(self, id: str, name: str): self.id = id self.name = name PAGE_SIZE = 10 ``` Install this rule for Greptile
Greptile rules can be added through the web interface. Please see this documentation for details on how to add custom rules and context.
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```File Path Patterns:
Install this rule for GitHub Copilot
Copilot instructions can be added through the interface. See the documentation for details on how to create coding guidelines.
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```File Path Patterns:
Install this rule for Graphite Diamond
Diamond custom rules can be added through the interface. See the documentation for details on how to create custom rules.
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```File Path Patterns:
Use with Cline
Copy the rule below and ask Cline to review your code using this rule
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```Use with OpenAI Codex
Copy the rule below and ask OpenAI Codex to review your code using this rule
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```Use with Cursor
Copy the rule below and ask Cursor to review your code using this rule
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```Use with Claude Code
Copy the rule below and ask Claude Code to review your code using this rule
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```Install this rule for Windsurf
To set up rules for Windsurf Reviews, please see this documentation
Avoid duplicating code in Python. Extract repeated logic into reusable functions, classes, or constants. You may have to search the codebase to see if the function or class is already defined.Bad:```python# Duplicated class definitionsclass User: def __init__(self, id: str, name: str): self.id = id self.name = nameclass UserProfile: def __init__(self, id: str, name: str): self.id = id self.name = name# Magic numbers repeatedpage_size = 10items_per_page = 10```Good:```python# Reusable class and constantclass User: def __init__(self, id: str, name: str): self.id = id self.name = namePAGE_SIZE = 10```