arya2004 / arya2004/Data-Filtering-Chatbot
Clean unused sys.argv block in submission_evaluation.py
Open
enhancement
good first issue
hacktoberfest
hacktoberfest-accepted
python
refactor
- Dominant language
- Python
- Stars
- 2
- Forks
- 6
- PR merge metrics
- No merged PRs in 30d
Description
### 🧹 Unused sys.argv block in submission_evaluation.py
The script reads from `sys.argv`, but the `df` variable is overwritten anyway.
#### ❌ Problem:
```python
df = pd.read_excel(f"{submission_name}.xlsx") # Gets overwritten
```
#### ✅ Fix:
* Remove the unused `sys.argv` logic.
Contributor guide
Assessment
This issue has not been assessed yet.