Skip to content

Commit

Permalink
fixup! API-11686: Open v3.6 - add new modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kacperf531 committed Nov 24, 2022
1 parent 7b198b7 commit e2ea8a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions livechat/tests/test_wh_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from livechat.webhooks.v33 import WebhookV33, action_to_data_class_mapping_v_33
from livechat.webhooks.v34 import WebhookV34, action_to_data_class_mapping_v_34
from livechat.webhooks.v35 import WebhookV35, action_to_data_class_mapping_v_35
from livechat.webhooks.v36 import WebhookV35, action_to_data_class_mapping_v_36
from livechat.webhooks.v36 import WebhookV36, action_to_data_class_mapping_v_36

# pylint: disable=redefined-outer-name

Expand Down Expand Up @@ -40,7 +40,7 @@ def webhook_data_class_and_mapping() -> tuple:
'3.3': (WebhookV33, action_to_data_class_mapping_v_33),
'3.4': (WebhookV34, action_to_data_class_mapping_v_34),
'3.5': (WebhookV35, action_to_data_class_mapping_v_35),
'3.6': (WebhookV35, action_to_data_class_mapping_v_36),
'3.6': (WebhookV36, action_to_data_class_mapping_v_36),
}.get(stable_version)


Expand Down

0 comments on commit e2ea8a9

Please sign in to comment.