Skip to content

Wrong import in bclib/listener/__init__.py #122

Description

@ijavadddd

The server fails to start due to an incorrect import path in bclib/listener/init.py.
Currently, the file imports SocketMessage using a relative path that doesn’t match the package structure:

from listener.socket_message import SocketMessage

This import should be updated to use the correct absolute path:

from bclib.listener.socket_message import SocketMessage

Impact:
This incorrect import prevents the server from running properly because Python cannot resolve the listener module when loading bclib.listener.

Proposed Fix:
Update the import statement in bclib/listener/init.py to reference the correct package path.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions