mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-09-06 18:54:19 +00:00
Version 0.1
Added sidebar, Dashboard, Line Graph
This commit is contained in:
12
.venv/Lib/site-packages/openpyxl/descriptors/namespace.py
Normal file
12
.venv/Lib/site-packages/openpyxl/descriptors/namespace.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# 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
|
Reference in New Issue
Block a user