| 257 | |
| 258 | |
| 259 | class FeastExtrasDependencyImportError(FeastError): |
| 260 | def __init__(self, extras_type: str, nested_error: str): |
| 261 | message = ( |
| 262 | nested_error |
| 263 | + "\n" |
| 264 | + f"You may need run {Style.BRIGHT + Fore.GREEN}pip install 'feast[{extras_type}]'{Style.RESET_ALL}" |
| 265 | ) |
| 266 | super().__init__(message) |
| 267 | |
| 268 | |
| 269 | class FeastOfflineStoreUnsupportedDataSource(FeastError): |
no outgoing calls
no test coverage detected