mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-19 01:49:43 +00:00
13 lines
309 B
Python
13 lines
309 B
Python
# copyright openpyxl 2010-2015
|
|
|
|
|
|
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
|