Skip to content

Commit

Permalink
Remove Style.VERTICAL
Browse files Browse the repository at this point in the history
  • Loading branch information
mberk committed Jul 25, 2021
1 parent aa5fb85 commit 34b4e1a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions betfairviz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24384,7 +24384,6 @@
class Style(Enum):
DEFAULT = 'default'
RAW = 'raw'
VERTICAL = 'vertical'


def calculate_book_percentage(market_book: Dict[str, Any], is_back: bool) -> float:
Expand Down Expand Up @@ -24599,8 +24598,6 @@ def visualise(
return HTML(_create_market_book_iframe(market_book=market_book, depth=depth))
elif style is Style.RAW:
return Pretty(pretty(market_book))
elif style is Style.VERTICAL:
raise NotImplementedError
else:
raise ValueError(f'Unrecognised style: {style}')

Expand Down

0 comments on commit 34b4e1a

Please sign in to comment.