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
Hello
This package is using as a dependency some Oslo packages that are not maintained correctly
Based in the code this can be removed as a requirement and use the well maintained package
''' try: from oslo_log import log as logging except ImportError: # pragma: no cover import logging
try: from oslo_serialization import jsonutils except ImportError: # pragma: no cover import json as jsonutils '''
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello
This package is using as a dependency some Oslo packages that are not maintained correctly
Based in the code this can be removed as a requirement and use the well maintained package
'''
try:
from oslo_log import log as logging
except ImportError: # pragma: no cover
import logging
try:
from oslo_serialization import jsonutils
except ImportError: # pragma: no cover
import json as jsonutils
'''
The text was updated successfully, but these errors were encountered: