You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Project currently uses relative imports in several places, which can lead to various issues such as difficulties in refactoring, reduced readability, and complications when running tests or deploying the project. To improve the maintainability and clarity of our codebase, we should transition to using absolute imports.
Proposed Solution:
Identify all relative imports in the project.
Replace relative imports with absolute imports.
Test the project thoroughly to ensure that the changes do not introduce any bugs or issues.
Example:
Current Relative Import:
from .moduleimportSomeClass
Proposed Absolute Import:
fromquotient.moduleimportSomeClass
Make PR to rewrite branch only.
The text was updated successfully, but these errors were encountered:
Project currently uses relative imports in several places, which can lead to various issues such as difficulties in refactoring, reduced readability, and complications when running tests or deploying the project. To improve the maintainability and clarity of our codebase, we should transition to using absolute imports.
Proposed Solution:
Example:
Current Relative Import:
Proposed Absolute Import:
Make PR to
rewrite
branch only.The text was updated successfully, but these errors were encountered: