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 3667856 commit 7aa1d31Copy full SHA for 7aa1d31
2 files changed
.github/workflows/test.yml
@@ -39,6 +39,7 @@ jobs:
39
- name: Install dependencies
40
run: |
41
python -m pip install --upgrade pip
42
+ pip install pytest
43
pip install -e . -r requirements.txt
44
45
- name: Run tests
src/xclient.py
@@ -7,14 +7,13 @@
7
from collections.abc import AsyncIterator
8
from pathlib import Path
9
from typing import Any, Iterable, Literal
10
-
11
-FetchMode = Literal["all", "new_only", "with_updates"]
12
13
import aiohttp
14
import uncurl
15
16
from tweet import MediaItem, Tweet
17
+FetchMode = Literal["all", "new_only", "with_updates"]
+
18
logger = logging.getLogger(__file__)
19
20
0 commit comments