Disable too-few-public-methods error in pylint
This commit is contained in:
parent
2ddd430534
commit
3e0300cb0e
5 changed files with 2 additions and 12 deletions
|
|
@ -10,8 +10,6 @@ from urban_meal_delivery.db import meta
|
|||
class Courier(meta.Base):
|
||||
"""A Courier working for the UDP."""
|
||||
|
||||
# pylint:disable=too-few-public-methods
|
||||
|
||||
__tablename__ = 'couriers'
|
||||
|
||||
# Columns
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ from urban_meal_delivery.db import meta
|
|||
class Customer(meta.Base):
|
||||
"""A Customer of the UDP."""
|
||||
|
||||
# pylint:disable=too-few-public-methods
|
||||
|
||||
__tablename__ = 'customers'
|
||||
|
||||
# Columns
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ from urban_meal_delivery.db import meta
|
|||
class Restaurant(meta.Base):
|
||||
"""A Restaurant selling meals on the UDP."""
|
||||
|
||||
# pylint:disable=too-few-public-methods
|
||||
|
||||
__tablename__ = 'restaurants'
|
||||
|
||||
# Columns
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue