Sync Python SDK models from atlanhq/models#916
Open
atlan-ci wants to merge 1 commit into
Open
Conversation
Source commit: c3e523ea6a8111ce8e2e228ef78c8d38a7146d9b Source ref: refs/heads/master Co-Authored-By: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
| from typing import Dict, List, Set, Union | ||
|
|
||
| import msgspec | ||
| from msgspec import UNSET, UnsetType |
There was a problem hiding this comment.
The code generator is emitting unused imports. These lines trigger ruff F401 errors and are causing CI failure:
from typing import Dict, List, Set, Union # Dict, List, Set, Union all unused
import msgspec # unused
from msgspec import UNSET, UnsetType # UNSET, UnsetType unusedThis same pattern is present in all 19 new *_related.py and model files. The Pkl code generator in atlanhq/models should be updated to only emit imports that are actually used by the generated class.
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.
Summary
This PR syncs the generated Python SDK models from the atlanhq/models repository.
masterbranchChanges
Auto-generated Python model files from Pkl type definitions.
Test Plan
🤖 This PR was automatically created by the sync-python-sdk workflow.