Skip to content

Commit 7e463cc

Browse files
committed
resolve conflicts with master
2 parents 41dec34 + 15ebe85 commit 7e463cc

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dist/
55
MANIFEST
66
build/
77
.eggs/
8-
.coverage/
8+
.coverage
99
.vscode/
1010
env/
1111
venv/

posthog/client.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
import logging
44
import numbers
55
from datetime import datetime, timedelta
6-
from uuid import uuid4
6+
from uuid import UUID, uuid4
77

8-
import requests
98
from dateutil.tz import tzutc
109
from six import string_types
1110

@@ -21,7 +20,7 @@
2120
import Queue as queue
2221

2322

24-
ID_TYPES = (numbers.Number, string_types)
23+
ID_TYPES = (numbers.Number, string_types, UUID)
2524
__LONG_SCALE__ = float(0xFFFFFFFFFFFFFFF)
2625

2726

0 commit comments

Comments
 (0)