Easy spacing fixes, trailing stuff
Remove useless trailing \ Remove trailing spaces Add missing empty lines autopep8 -ir -j2 --select=E301,E302,E502,W291,W293,W391 . Diff quickly checked.
This commit is contained in:
parent
c21d1f7925
commit
7094931c92
231 changed files with 474 additions and 67 deletions
|
|
@ -31,6 +31,7 @@ class Product(CapBaseObject):
|
|||
"""
|
||||
name = StringField('Name of product')
|
||||
|
||||
|
||||
class Shop(CapBaseObject):
|
||||
"""
|
||||
A shop where the price is.
|
||||
|
|
@ -39,6 +40,7 @@ class Shop(CapBaseObject):
|
|||
location = StringField('Location of the shop')
|
||||
info = StringField('Information about the shop')
|
||||
|
||||
|
||||
class Price(CapBaseObject):
|
||||
"""
|
||||
Price.
|
||||
|
|
@ -50,6 +52,7 @@ class Price(CapBaseObject):
|
|||
shop = Field('Shop information', Shop)
|
||||
product = Field('Product', Product)
|
||||
|
||||
|
||||
class ICapPriceComparison(IBaseCap):
|
||||
"""
|
||||
Capability for price comparison websites.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue