iam working with vscode alot and i dont know why but when i use relative iports vscode doesnt allow it
from ..helpers.enums import Environment
ImportError: attempted relative import beyond top-level package
is there a way to fix it because it would be nice to be able to use relative imports for the code to be used in a multi repo
from game_core_client import Configuration
from pydantic import Field, SecretStr
from pydantic_settings import BaseSettings, SettingsConfigDict
from ..helpers.enums import Environment
class Settings(BaseSettings):