Skip to content

Commit e9aa46f

Browse files
committed
I have no idea what is going on
1 parent d8e9ff1 commit e9aa46f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/siarnaq/api/compete/test_views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import random
33
from collections import OrderedDict
44
from datetime import timedelta
5+
from typing import Any
56
from unittest.mock import mock_open, patch
67

78
from django.test import TestCase, override_settings
@@ -38,7 +39,7 @@
3839
from siarnaq.api.user.models import User
3940

4041

41-
def ordered_dict_to_dict(data):
42+
def ordered_dict_to_dict(data: Any) -> Any:
4243
"""
4344
Recursively convert OrderedDict to dict for test comparisons.
4445
Applies the conversion to ordered dicts, dicts, and lists.

0 commit comments

Comments
 (0)