Fix: Remove unused imports and variables#1142
Fix: Remove unused imports and variables#1142anaslimem wants to merge 1 commit intoqdrant:masterfrom
Conversation
- Remove unused sys import from conversions/common_types.py - Remove unused Sequence import from conversions/conversion.py - Remove unused exception variable from embed/schema_parser.py
✅ Deploy Preview for poetic-froyo-8baba7 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
📝 WalkthroughWalkthroughThis pull request removes unused imports and an unused exception alias across three files in the qdrant_client package. Specifically: removed Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Description
This PR fixes linting issues identified by
ruffby removing unused imports and variables that were causing code quality warnings.Changes Made
sysimportSequenceimport from typingein ImportError handlerMotivation
These changes improve code quality by:
ruff checkTesting
ruff checkconfirms the linting issues are resolvedType of Change
Checklist