Merged
Conversation
| project_id=project_id[0], | ||
| username=auth_username, | ||
| password=auth_password, | ||
| project_id=project_id[0] if project_id else None, |
Contributor
There was a problem hiding this comment.
project_id type mismatch - passing None when str expected
Suggested change
| project_id=project_id[0] if project_id else None, | |
| project_id=project_id[0] if project_id else "", |
Prompt To Fix With AI
This is a comment left during a code review.
Path: ingestr/src/sources.py
Line: 1548
Comment:
`project_id` type mismatch - passing `None` when `str` expected
```suggestion
project_id=project_id[0] if project_id else "",
```
How can I resolve this? If you propose a fix, please make it concise.| - `username`: Mixpanel service account username. | ||
| - `password`: Mixpanel service account secret. This is the secret associated with the service account. | ||
| - `api_secret`: (Optional) Mixpanel project secret. Can be used instead of `username` and `password`. Can be found in the [Access Keys section](https://mixpanel.com/settings/project/) of your project settings. | ||
| - `project_id`: The numeric project ID. |
Contributor
There was a problem hiding this comment.
project_id is required for service account auth but not for API secret auth
Prompt To Fix With AI
This is a comment left during a code review.
Path: docs/supported-sources/mixpanel.md
Line: 18
Comment:
`project_id` is required for service account auth but not for API secret auth
How can I resolve this? If you propose a fix, please make it concise.
Contributor
Additional Comments (2)
Prompt To Fix With AIThis is a comment left during a code review.
Path: ingestr/src/mixpanel/__init__.py
Line: 15
Comment:
Type signature doesn't allow `None` but API secret auth doesn't require `project_id`
```suggestion
project_id: str | None,
```
How can I resolve this? If you propose a fix, please make it concise.
Prompt To Fix With AIThis is a comment left during a code review.
Path: ingestr/src/mixpanel/client.py
Line: 9
Comment:
Type signature doesn't allow `None` but API secret auth doesn't require `project_id`
```suggestion
def __init__(self, username: str, password: str, project_id: str | None, server: str):
```
How can I resolve this? If you propose a fix, please make it concise. |
iremcaginyurtturk
approved these changes
Feb 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.