We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a980199 commit d84f1b0Copy full SHA for d84f1b0
2 files changed
bocco/api.py
@@ -3,7 +3,11 @@
3
import sys
4
import uuid
5
6
-from typing import Any, Dict, List, Optional, Type, Tuple
+try:
7
+ from typing import Any, Dict, List, Optional, Type, Tuple
8
+except:
9
+ pass
10
+
11
import requests
12
from schema import SchemaError
13
bocco/models.py
@@ -3,12 +3,15 @@
from uuid import UUID
-from typing import Any
+ from typing import Any
from enum import Enum
from schema import Schema, And, Or, Use, Optional
import arrow
14
-
15
if (3, 0) <= sys.version_info:
16
unicode = str
17
0 commit comments