Skip to content

Commit

Permalink
fix candle bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Graeme22 committed Jun 10, 2024
1 parent cdce51a commit f5064f3
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'tastytrade'
copyright = '2024, Graeme Holliday'
author = 'Graeme Holliday'
release = '7.5'
release = '7.6'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='tastytrade',
version='7.5',
version='7.6',
description='An unofficial SDK for Tastytrade!',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
Expand Down
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 = '7.5'
VERSION = '7.6'

logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
Expand Down
1 change: 0 additions & 1 deletion tastytrade/streamer.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,6 @@ async def unsubscribe_candle(
:param extended_trading_hours:
whether candle to unsubscribe from contains extended trading hours
"""
await self._channel_request(EventType.CANDLE)
message = {
'type': 'FEED_SUBSCRIPTION',
'channel': self._channels[EventType.CANDLE],
Expand Down

0 comments on commit f5064f3

Please sign in to comment.