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 ab65c94 commit a2e807bCopy full SHA for a2e807b
intbot/core/integrations/pretix.py
@@ -15,8 +15,6 @@
15
]
16
17
ENDPOINTS = {
18
- # Questions need to be passed to include answers in the same endpoint,
19
- # saving us later time with joining the answers.
20
PretixData.PretixResources.orders: "orders/",
21
PretixData.PretixResources.products: "items/",
22
PretixData.PretixResources.vouchers: "vouchers/",
@@ -46,7 +44,7 @@ def fetch_pretix_data(
46
44
endpoint = ENDPOINTS[resource]
47
45
url = f"{base_url}{endpoint}"
48
49
- # Pretalx paginates the output, so we will need to do multiple requests and
+ # Pretix paginates the output, so we will need to do multiple requests and
50
# then merge multiple pages to one big dictionary
51
results = []
52
page = 0
0 commit comments