You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
@propertydefindicators(
""" Returns a dictionary of all the active indicators :return: A dictionary of indicator objects. """self,
) ->dict[str, Union[ind.Indicator, ind.OverlayIndicator, ind.IndexIndicator]]:
returnself._active_indicators
Expected
@propertydefindicators(
self,
) ->dict[str, Union[ind.Indicator, ind.OverlayIndicator, ind.IndexIndicator]]:
""" Returns a dictionary of all the active indicators :return: A dictionary of indicator objects. """returnself._active_indicators
The text was updated successfully, but these errors were encountered:
defdownload_missing_historical_data(
""" It checks if the data is already downloaded for the given pairs and intervals. If not, it downloads the data :param strategy: The name of the strategy to use :type strategy: str :param config: Config :type config: Config :param parameters: Union[BacktestParameters, HyperoptParameters] :type parameters: Union[BacktestParameters, HyperoptParameters] """strategy: str,
config: Config,
parameters: Union[BacktestParameters, HyperoptParameters],
):
timerange: str=parameters.timerangestart_date, end_date=timerange.split('-')
start_date=dateutil.parser.parse(start_date).replace(tzinfo=utc)
...
Environment
AI Doc Writer Version: 1.0.10
PyCharm Version: 2021.3.2
OS: Manjaro 5.16.7
Issue
When generating docs for a property function formatted like the code below, the docstring is added to the wrong location.
Before generation
After generation
Expected
The text was updated successfully, but these errors were encountered: