Skip to content

Commit

Permalink
Fix to issue #116 (#117)
Browse files Browse the repository at this point in the history
* update account.py

* Update account.py

* Version FIx

* minor adjustment to code style
  • Loading branch information
kaidaniel82 authored Dec 30, 2023
1 parent 523dc7e commit f12e4a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tastytrade/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

API_URL = 'https://api.tastyworks.com'
CERT_URL = 'https://api.cert.tastyworks.com'
VERSION = '6.4'
VERSION = '6.4.1'

logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
Expand Down
2 changes: 1 addition & 1 deletion tastytrade/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ class TradingStatus(TastytradeJsonDataclass):
is_in_day_trade_equity_maintenance_call: bool
is_in_margin_call: bool
is_pattern_day_trader: bool
is_portfolio_margin_enabled: bool
is_small_notional_futures_intra_day_enabled: bool
is_roll_the_day_forward_enabled: bool
are_far_otm_net_options_restricted: bool
Expand All @@ -305,6 +304,7 @@ class TradingStatus(TastytradeJsonDataclass):
is_equity_offering_enabled: bool
is_equity_offering_closing_only: bool
updated_at: datetime
is_portfolio_margin_enabled: Optional[bool] = None
is_risk_reducing_only: Optional[bool] = None
day_trade_count: Optional[int] = None
autotrade_account_type: Optional[str] = None
Expand Down

0 comments on commit f12e4a4

Please sign in to comment.