Merge "Fix AttributeError in delete_limit method"

This commit is contained in:
Zuul 2024-04-26 15:04:13 +00:00 committed by Gerrit Code Review
commit 37db30af3c
1 changed files with 1 additions and 1 deletions

View File

@ -1374,7 +1374,7 @@ class Proxy(proxy.Proxy):
:returns: ``None``
"""
self._delete(limit.Limit, limit, ignore_missing=ignore_missing)
self._delete(_limit.Limit, limit, ignore_missing=ignore_missing)
# ========== Roles ==========