Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update common.py #2242

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update common.py #2242

wants to merge 1 commit into from

Conversation

AARN0LD
Copy link

@AARN0LD AARN0LD commented Mar 27, 2025

when the common.py tries to import SOM from bson it fails due to the fact the import needs to be from bson.som import SOM.

This is actually referenced correctly later on in some of the exception handling where it mentions bson.som.SOM

when the common.py tries to import SOM from bson it fails due to the fact the import needs to be from bson.som import SOM.

This is actually referenced correctly later on in some of the exception handling where it mentions bson.som.SOM
@ShaneHarvey
Copy link
Member

it fails due to the fact the import needs to be from bson.som import SOM.

What do you mean it fails? Both imports should work:

>>> from bson import SON
>>> SON
<class 'bson.son.SON'>
>>> from bson.son import SON
>>> SON
<class 'bson.son.SON'>

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants