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
We encountered the case where the import alias used is the same as the name of the file and therefore the namespace. One Example:
File: openstack/cinder-25.0.0/cinder/objects/base.py
from oslo_versionedobjects import base
...
class ObjectListBase(base.ObjectListBase):
For now we prevent the creation of a harmfull loop in the type hierarchy. However, here we need to fix the underlying Issue.
The text was updated successfully, but these errors were encountered:
We encountered the case where the import alias used is the same as the name of the file and therefore the namespace. One Example:
File: openstack/cinder-25.0.0/cinder/objects/base.py
For now we prevent the creation of a harmfull loop in the type hierarchy. However, here we need to fix the underlying Issue.
The text was updated successfully, but these errors were encountered: