Skip to content

Commit 107a584

Browse files
committed
chore: Move base capture to the end
1 parent f0a91b7 commit 107a584

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contents/docs/product-analytics/schema-management.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ def main():
208208
host=POSTHOG_HOST,
209209
)
210210

211-
# Base captures are still possible as well
212-
posthog.capture("capture_raw_example", distinct_id="distinct_id", properties={"test": "property"})
213211
# Capture with required properties
214212
posthog.capture_downloaded_file(file_size_b=2048, file_name="file_name", distinct_id="distinct_id",
215213
extra_properties={"test": "property"})
216214
# Capture with no required properties
217215
posthog.capture_user_logged_in(extra_properties={"test": "property"}, distinct_id="distinct_id")
216+
# Base captures are still possible
217+
posthog.capture("capture_raw_example", distinct_id="distinct_id", properties={"test": "property"})
218218

219219
```
220220

0 commit comments

Comments
 (0)