Raphael

Results 5 comments of Raphael

I think it's primarily for auto-completion while avoiding circular imports. In the link you provided, `from .user import User # noqa: F401` will only import `User` for the sake of...

Perhaps adding a `default=None` to `get_kval()` would make sense. Using the example from the docs: ```python if pair == 'BTC/USDT' and entry_tag == 'long_sma200' and side == 'long' and (current_time...

@xmatthias I see you have made commits into feature_keyval_storage. Is it safe to say that you are planning on taking this further? Are there any blockers that the community can...

This also happens in regular functions with similar formatting. ## Before ```python def download_missing_historical_data( strategy: str, config: Config, parameters: Union[BacktestParameters, HyperoptParameters], ): timerange: str = parameters.timerange start_date, end_date = timerange.split('-')...