Skip to content

Commit

Permalink
Remove unnecessary print statement from datatype_manager
Browse files Browse the repository at this point in the history
Removed a debugging print statement from the datatype_manager.py file. This was an artifact left behind from testing, and its removal does not affect functionality but reduces unnecessary console output during execution.
  • Loading branch information
Omar Al-Jarrah committed Dec 4, 2023
1 parent 73a7450 commit 86cbab1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion expediagroup/sdk/generator/client/datatype_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def migrate_datatype_constraints(data_type_kwargs: dict[str, Any]) -> dict[str,

for key, value in PYDANTIC_V2_MIGRATION_CONSTRAINTS_MAPPING.items():
if migrated_data_type_kwargs.get(key):
print("called")
migrated_data_type_kwargs.update([(value, migrated_data_type_kwargs.get(key))])
migrated_data_type_kwargs.pop(key)

Expand Down

0 comments on commit 86cbab1

Please sign in to comment.