@@ -80,13 +80,11 @@ class Unbound(Generic[B], ABC):
8080 """Represents an unbound value expression."""
8181
8282 @abstractmethod
83- def bind (self , schema : Schema , case_sensitive : bool = True ) -> B :
84- ...
83+ def bind (self , schema : Schema , case_sensitive : bool = True ) -> B : ...
8584
8685 @property
8786 @abstractmethod
88- def as_bound (self ) -> Type [Bound ]:
89- ...
87+ def as_bound (self ) -> Type [Bound ]: ...
9088
9189
9290class BoundTerm (Term [L ], Bound , ABC ):
@@ -142,8 +140,7 @@ class UnboundTerm(Term[Any], Unbound[BoundTerm[L]], ABC):
142140 """Represents an unbound term."""
143141
144142 @abstractmethod
145- def bind (self , schema : Schema , case_sensitive : bool = True ) -> BoundTerm [L ]:
146- ...
143+ def bind (self , schema : Schema , case_sensitive : bool = True ) -> BoundTerm [L ]: ...
147144
148145
149146class Reference (UnboundTerm [Any ]):
@@ -352,8 +349,7 @@ def __eq__(self, other: Any) -> bool:
352349
353350 @property
354351 @abstractmethod
355- def as_unbound (self ) -> Type [UnboundPredicate [Any ]]:
356- ...
352+ def as_unbound (self ) -> Type [UnboundPredicate [Any ]]: ...
357353
358354
359355class UnboundPredicate (Generic [L ], Unbound [BooleanExpression ], BooleanExpression , ABC ):
@@ -367,13 +363,11 @@ def __eq__(self, other: Any) -> bool:
367363 return self .term == other .term if isinstance (other , self .__class__ ) else False
368364
369365 @abstractmethod
370- def bind (self , schema : Schema , case_sensitive : bool = True ) -> BooleanExpression :
371- ...
366+ def bind (self , schema : Schema , case_sensitive : bool = True ) -> BooleanExpression : ...
372367
373368 @property
374369 @abstractmethod
375- def as_bound (self ) -> Type [BoundPredicate [L ]]:
376- ...
370+ def as_bound (self ) -> Type [BoundPredicate [L ]]: ...
377371
378372
379373class UnaryPredicate (UnboundPredicate [Any ], ABC ):
@@ -387,8 +381,7 @@ def __repr__(self) -> str:
387381
388382 @property
389383 @abstractmethod
390- def as_bound (self ) -> Type [BoundUnaryPredicate [Any ]]:
391- ...
384+ def as_bound (self ) -> Type [BoundUnaryPredicate [Any ]]: ...
392385
393386
394387class BoundUnaryPredicate (BoundPredicate [L ], ABC ):
@@ -398,8 +391,7 @@ def __repr__(self) -> str:
398391
399392 @property
400393 @abstractmethod
401- def as_unbound (self ) -> Type [UnaryPredicate ]:
402- ...
394+ def as_unbound (self ) -> Type [UnaryPredicate ]: ...
403395
404396 def __getnewargs__ (self ) -> Tuple [BoundTerm [L ]]:
405397 """Pickle the BoundUnaryPredicate class."""
@@ -575,8 +567,7 @@ def __getnewargs__(self) -> Tuple[BoundTerm[L], Set[Literal[L]]]:
575567
576568 @property
577569 @abstractmethod
578- def as_unbound (self ) -> Type [SetPredicate [L ]]:
579- ...
570+ def as_unbound (self ) -> Type [SetPredicate [L ]]: ...
580571
581572
582573class BoundIn (BoundSetPredicate [L ]):
@@ -705,8 +696,7 @@ def __repr__(self) -> str:
705696
706697 @property
707698 @abstractmethod
708- def as_bound (self ) -> Type [BoundLiteralPredicate [L ]]:
709- ...
699+ def as_bound (self ) -> Type [BoundLiteralPredicate [L ]]: ...
710700
711701
712702class BoundLiteralPredicate (BoundPredicate [L ], ABC ):
@@ -729,8 +719,7 @@ def __repr__(self) -> str:
729719
730720 @property
731721 @abstractmethod
732- def as_unbound (self ) -> Type [LiteralPredicate [L ]]:
733- ...
722+ def as_unbound (self ) -> Type [LiteralPredicate [L ]]: ...
734723
735724
736725class BoundEqualTo (BoundLiteralPredicate [L ]):
0 commit comments