nekitdev / async-extensions

Asynchronous extensions.
MIT License
2 stars 1 forks source link

ModuleNotFoundError: No module named 'wraps.primitives' #15

Open DelofJ opened 3 weeks ago

DelofJ commented 3 weeks ago

I get this error on Python 3.11.9, I'm using a virtual environment And it is the latest version of async-extensions aka 4.0.0

Traceback (most recent call last):
  File "c:\Users\DelofJ\Code Projects\Geometry Dash API\main.py", line 19, in <module>
    import async_extensions
  File "C:\Users\DelofJ\Code Projects\Geometry Dash API\.venv\Lib\site-packages\async_extensions\__init__.py", line 19, in <module>
    from async_extensions.collecting import (
  File "C:\Users\DelofJ\Code Projects\Geometry Dash API\.venv\Lib\site-packages\async_extensions\collecting.py", line 6, in <module>
    from async_extensions.completion import as_completed_tagged_results
  File "C:\Users\DelofJ\Code Projects\Geometry Dash API\.venv\Lib\site-packages\async_extensions\completion.py", line 6, in <module>
    from async_extensions.results import NormalResult
  File "C:\Users\DelofJ\Code Projects\Geometry Dash API\.venv\Lib\site-packages\async_extensions\results.py", line 4, in <module>
    from wraps.primitives.result import Error, Ok, Result
ModuleNotFoundError: No module named 'wraps.primitives'
DelofJ commented 3 weeks ago

I created a PR that should fix the issue https://github.com/nekitdev/async-extensions/pull/16