Skip to content

Commit

Permalink
fix mypy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-lymar committed Jun 8, 2024
1 parent 54a5d55 commit 0375f70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makedoc/data_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def get_client(processed_data):
"destination_city": str(client.destination_city),
"railway_station": str(client.railway_station),
"receiver_name": str(client.receiver_name),
"receiver_id": int(client.receiver_id),
"receiver_okpo": int(client.receiver_okpo),
"receiver_id": str(client.receiver_id),
"receiver_okpo": str(client.receiver_okpo),
"receiver_adress": str(client.receiver_adress),
"special_marks": str(client.special_marks),
"last_application_number": str(client.last_application_number),
Expand Down

0 comments on commit 0375f70

Please sign in to comment.