Move DD code into its own directory (#6)

This commit is contained in:
Diego Hurtado
2020-04-08 11:39:44 -06:00
committed by GitHub
parent 72b40ba5f9
commit 5aee3ce32e
611 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,9 @@
def normalize_header_name(header_name):
"""
Normalizes an header name to lower case, stripping all its leading and trailing white spaces.
:param header_name: the header name to normalize
:type header_name: str
:return: the normalized header name
:rtype: str
"""
return header_name.strip().lower() if header_name is not None else None