Skip to content

Commit

Permalink
styling changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maxxrk committed Feb 10, 2024
1 parent 5f737a9 commit 82ed7ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions firstrade/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@
from bs4 import BeautifulSoup




class PriceType(str, Enum):

"""
This is an :class: 'enum.Enum'
that contains the valid price types for an order.
Expand All @@ -23,6 +22,7 @@ class PriceType(str, Enum):


class Duration(str, Enum):

"""
This is an :class:'~enum.Enum'
that contains the valid durations for an order.
Expand All @@ -36,6 +36,7 @@ class Duration(str, Enum):


class OrderType(str, Enum):

"""
This is an :class:'~enum.Enum'
that contains the valid order types for an order.
Expand All @@ -48,6 +49,7 @@ class OrderType(str, Enum):


class Order:

"""
This class contains information about an order.
It also contains a method to place an order.
Expand Down

0 comments on commit 82ed7ab

Please sign in to comment.