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 7c1c782 commit 65f2fc8Copy full SHA for 65f2fc8
src/tasks/schedulers.py
@@ -23,9 +23,9 @@
23
24
FIVE_MINUTE = 300
25
26
-DEFAULT_TWEETS = [
27
- dict(status=
28
- """
+DEFAULT_TWEETS: list[dict[str, str]] = [
+ dict(
+ status="""
29
EOD Stock Market API
30
31
- Exchange & Ticker Data
@@ -38,9 +38,10 @@
38
39
Create A free API Key today
40
https://eod-stock-api.site/plan-descriptions/basic
41
- """, media_ids=["1647575420009603073"]),
42
43
+ """,
+ media_ids=["1647575420009603073"]),
44
45
Financial & Business News API
46
47
- Articles By UUID
@@ -52,7 +53,8 @@
52
53
54
55
https://bit.ly/financial-business-news-api
- """, media_ids=["1647575420009603073"])
56
57
+ media_ids=["1647575420009603073"])
58
]
59
60
0 commit comments