Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
amamparo committed Jul 9, 2023
1 parent 1abecb1 commit 1c0e3eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tastytrade_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
---
"""

# Make these classes visible in the auto-generated documentation
# Make these classes available to the user and visible in the auto-generated documentation
__all__ = [
'Tastytrade',
'MarketData', 'Subscription', 'Quote', 'Candle', 'Greeks',
'Api',
'Order'
'Order', 'Leg'
]

from tastytrade_sdk.api import Api, QueryParams
from tastytrade_sdk.market_data.market_data import MarketData
from tastytrade_sdk.market_data.models import Quote, Candle, Greeks
from tastytrade_sdk.market_data.subscription import Subscription
from tastytrade_sdk.orders import Order
from tastytrade_sdk.orders import Order, Leg
from tastytrade_sdk.tastytrade import Tastytrade
1 change: 1 addition & 0 deletions src/tastytrade_sdk/orders.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

@dataclass
class Leg:
"""@private"""
instrument_type: str
symbol: str
action: str
Expand Down

0 comments on commit 1c0e3eb

Please sign in to comment.