Files
convertions/convertions-env/lib/python3.11/site-packages/openpyxl/descriptors/namespace.py
2024-09-29 01:45:31 -04:00

13 lines
313 B
Python

# Copyright (c) 2010-2023 openpyxl
def namespaced(obj, tagname, namespace=None):
"""
Utility to create a namespaced tag for an object
"""
namespace = getattr(obj, "namespace", None) or namespace
if namespace is not None:
tagname = "{%s}%s" % (namespace, tagname)
return tagname