summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pycadf/identifier.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pycadf/identifier.py b/pycadf/identifier.py
index 69619eb..c3ed918 100644
--- a/pycadf/identifier.py
+++ b/pycadf/identifier.py
@@ -16,7 +16,6 @@ import re
import uuid
import warnings
-from debtcollector import removals
from oslo_config import cfg
import six
@@ -44,13 +43,6 @@ def generate_uuid():
return str(uuid.uuid4())
-@removals.remove
-def norm_ns(str_id):
- """Apply a namespace to the identifier."""
- prefix = CONF.audit.namespace + ':' if CONF.audit.namespace else ''
- return prefix + str_id
-
-
def _check_valid_uuid(value):
"""Checks a value for one or multiple valid uuids joined together."""