To fix the issue of unnecessary parentheses after the 'if' keyword, you should remove the parentheses around the condition in the `if` statement.

---FILEPATH /Users/someone/Projects/proj01/pylint_unecessary_parenthesis.py
---FIND
```python
    if (part in selected):
```
---REPLACE
```python
    if part in selected:
```
---COMPLETE