Skip to content

Commit

Permalink
Requests: fixed "see also" parent classes in docstrings (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev-iL authored Nov 10, 2023
1 parent aebc380 commit 56fac45
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions alpaca/data/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class StockBarsRequest(BaseBarsRequest):
"""
The request model for retrieving bar data for equities.
See BaseGetBarsRequest for more information on available parameters.
See BaseBarsRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand All @@ -99,7 +99,7 @@ class CryptoBarsRequest(BaseBarsRequest):
"""
The request model for retrieving bar data for cryptocurrencies.
See BaseGetBarsRequest for more information on available parameters.
See BaseBarsRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand Down Expand Up @@ -196,7 +196,7 @@ class StockLatestTradeRequest(BaseStockLatestDataRequest):
"""
This request class is used to submit a request for the latest stock trade data.
See BaseLatestStockDataRequest for more information on available parameters.
See BaseStockLatestDataRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand All @@ -210,7 +210,7 @@ class StockLatestQuoteRequest(BaseStockLatestDataRequest):
"""
This request class is used to submit a request for the latest stock quote data.
See BaseLatestStockDataRequest for more information on available parameters.
See BaseStockLatestDataRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand All @@ -224,7 +224,7 @@ class StockLatestBarRequest(BaseStockLatestDataRequest):
"""
This request class is used to submit a request for the latest stock bar data.
See BaseLatestStockDataRequest for more information on available parameters.
See BaseStockLatestDataRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand Down Expand Up @@ -252,7 +252,7 @@ class CryptoLatestTradeRequest(BaseCryptoLatestDataRequest):
"""
This request class is used to submit a request for the latest crypto trade data.
See BaseLatestCryptoDataRequest for more information on available parameters.
See BaseCryptoLatestDataRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand All @@ -265,7 +265,7 @@ class CryptoLatestQuoteRequest(BaseCryptoLatestDataRequest):
"""
This request class is used to submit a request for the latest crypto quote data.
See BaseLatestCryptoDataRequest for more information on available parameters.
See BaseCryptoLatestDataRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand All @@ -278,7 +278,7 @@ class CryptoLatestBarRequest(BaseCryptoLatestDataRequest):
"""
This request class is used to submit a request for the latest crypto bar data.
See BaseLatestCryptoDataRequest for more information on available parameters.
See BaseCryptoLatestDataRequest for more information on available parameters.
Attributes:
symbol_or_symbols (Union[str, List[str]]): The ticker identifier or list of ticker identifiers.
Expand Down

0 comments on commit 56fac45

Please sign in to comment.