We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need to simplify the import statement for the Secured class in our project. Currently, we are importing it using:
Secured
from secured.secured import Secured
We want to change it to:
from secured import Secured
Open any file where Secured is imported.
Observe the current import statement:
The import statement should be simplified to:
Currently, we are using:
__init__.py
secured
Simplifying the import statement will make the code cleaner and more intuitive. This change should be applied across the entire codebase.
The text was updated successfully, but these errors were encountered:
08f05b0
Joaopeuko
Successfully merging a pull request may close this issue.
Description
We need to simplify the import statement for the
Secured
class in our project. Currently, we are importing it using:We want to change it to:
Steps to Reproduce
Open any file where
Secured
is imported.Observe the current import statement:
Expected Behavior
The import statement should be simplified to:
Actual Behavior
Currently, we are using:
Tasks
__init__.py
file in thesecured
directory to includeSecured
.Additional Context
Simplifying the import statement will make the code cleaner and more intuitive. This change should be applied across the entire codebase.
The text was updated successfully, but these errors were encountered: