From 1761de8407dbc7a05f2b5ef170aceab2292fe62c Mon Sep 17 00:00:00 2001 From: Edvard Majakari Date: Fri, 21 Apr 2023 09:46:12 +0300 Subject: [PATCH] remove unused exception --- pypika/utils.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pypika/utils.py b/pypika/utils.py index dc156e23..9d3fd026 100644 --- a/pypika/utils.py +++ b/pypika/utils.py @@ -36,18 +36,7 @@ class FunctionException(Exception): pass -<<<<<<< HEAD -C = TypeVar("C") - - -def builder(func: C) -> C: -======= -class MixedInsertStyleError(QueryException): - pass - - def builder(func: Callable) -> Callable: ->>>>>>> 25aabb6 (simple insert_dict() builder) """ Decorator for wrapper "builder" functions. These are functions on the Query class or other classes used for building queries which mutate the query and return self. To make the build functions immutable, this decorator is