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 dca4af6 commit 10c9b35Copy full SHA for 10c9b35
.github/workflows/ci.yml
@@ -19,6 +19,7 @@ jobs:
19
python-version: 3.8
20
21
- uses: actions/cache@v1
22
+ id: cache
23
with:
24
path: ~/.cache/pip
25
key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}
@@ -52,7 +53,7 @@ jobs:
52
53
fetch-depth: 1
54
55
- name: Set up Python 3.7
- uses: actions/setup-python@v1
56
+ uses: actions/setup-python@v2
57
58
python-version: 3.7
59
.gitignore
@@ -14,4 +14,5 @@ pylint.out
14
posthog-analytics
15
.idea
16
.python-version
17
-.coverage
+.coverage
18
+pyrightconfig.json
example.py
@@ -1,7 +1,7 @@
1
# PostHog Python library example
2
3
# Import the library
4
-import time
+# import time
5
6
import posthog
7
0 commit comments