fix __repr__
This commit is contained in:
parent
e124aea332
commit
d634e51cdf
@ -1,9 +1,5 @@
|
|||||||
# harvester/db/models.py
|
|
||||||
|
|
||||||
from sqlalchemy import Column, Integer, String, DateTime
|
from sqlalchemy import Column, Integer, String, DateTime
|
||||||
from sqlalchemy.ext.declarative import declarative_base
|
from .schema import Base
|
||||||
|
|
||||||
Base = declarative_base()
|
|
||||||
|
|
||||||
|
|
||||||
class Proxy(Base):
|
class Proxy(Base):
|
||||||
@ -21,5 +17,5 @@ class Proxy(Base):
|
|||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return (
|
return (
|
||||||
f'Proxy(id={self.id}, host={self.host}, port={self.port}, '
|
f'Proxy(id={self.id}, host={self.host}, port={self.port}, '
|
||||||
f'egress={self.egress}, created_at={self.created_at})'
|
f'egress_ip={self.egress_ip}, date_added={self.created_at})'
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user