Skip to content

Commit

Permalink
remove debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
laszewsk committed Feb 8, 2024
1 parent ef97273 commit c27e5fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cloudmesh/common/FlatDict.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def search(self, key, value=None):
# Modified idea from
# https://stackoverflow.com/questions/50607128/creating-a-nested-dictionary-from-a-flattened-dictionary
def unflatten(self):
"""unflattens the falt dict bac to a regular dict
"""unflattens the falt dict back to a regular dict
Returns:
"""
Expand Down Expand Up @@ -299,7 +299,7 @@ def load(self, content=None, expand=True, sep="."):
elif type(content) == dict:
self.loadd(content=content, sep=".")
elif os.path.isfile(str(content)):
print("file")
# print("file")
self.loadf(filename=content, sep=".")
elif type(content) == str:
self.loads(content=content, sep=".")
Expand Down

0 comments on commit c27e5fc

Please sign in to comment.