Convert text file line endings to LF.

This commit is contained in:
Ben Rog-Wilhelm 2022-05-09 07:20:47 -05:00 committed by GitHub
parent 67d5db425f
commit 1ee9c1bfa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
166 changed files with 33162 additions and 33162 deletions

View file

@ -1,8 +1,8 @@
from sqlalchemy import *
from files.__main__ import Base
class BannedDomain(Base):
__tablename__ = "banneddomains"
domain = Column(String, primary_key=True)
from sqlalchemy import *
from files.__main__ import Base
class BannedDomain(Base):
__tablename__ = "banneddomains"
domain = Column(String, primary_key=True)
reason = Column(String)