Comment out erroneous code

This commit is contained in:
PCoder 2021-11-25 11:23:42 +05:30
parent 4e9980d5f5
commit 345c276a62
1 changed files with 2 additions and 2 deletions

View File

@ -448,6 +448,6 @@ def handle_object_dict(object_dict, model_name):
object_dict[i] = True if object_dict[i].lower().strip() == 'true' else False
if object_dict is None:
print("Object None for %s" % model_name)
else:
print(object_dict) if str(object_dict) is not None else "Str object dict is None"
# else:
# print(object_dict) if str(object_dict) is not None else "Str object dict is None"
return object_dict