Commit dad16cb1 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Make some WS modifications to satisfy the linter

parent d0aaf745
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -113,6 +113,7 @@ class Stage(int, Enum):

BFSelf = TypeVar("BFSelf", bound="BitField")


class BitField(int, Enum):
	"""
	Base class for bit-field enums like ActionFlags and ProtocolFlags
@@ -671,26 +672,31 @@ class Continue(NoDataMessage, ident=b"c"):
	A filter response instructing an MTA to continue without a specific decision
	"""


class Reject(NoDataMessage, ident=b"r"):
	"""
	A filter response instructing an MTA to reject a message
	"""


class Discard(NoDataMessage, ident=b"d"):
	"""
	A filter response instructing an MTA to reject a message without informing the client
	"""


class Accept(NoDataMessage, ident=b"a"):
	"""
	A filter response instructing an MTA to accept a message
	"""


class TemporaryFailure(NoDataMessage, ident=b"t"):
	"""
	A filter response instructing an MTA to reject a message temporarily (i.e. with a 4xx)
	"""


class Skip(NoDataMessage, ident=b"s"):
	"""
	A filter response instructing an MTA to skip the rest of a message's content
@@ -706,7 +712,6 @@ class ReplyCode(BytesMessage, ident=b"y"):
	"""



# Modification Messages

@dataclass
+1 −1

File changed.

Contains only whitespace changes.

+3 −3

File changed.

Contains only whitespace changes.