Skip to content

Commit

Permalink
remove commented classes
Browse files Browse the repository at this point in the history
  • Loading branch information
francesconazzaro committed Oct 14, 2024
1 parent f387e6c commit f34d535
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions cads_broker/expressions/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ def execute(self, context, a, b):
return self.op(a, b)


# class FunctionIn(BinOp):
# def execute(self, context, a, b):
# return operator.contains(b, a)

class FunctionContains(BinOp):
op = operator.contains

Expand Down Expand Up @@ -197,11 +193,6 @@ def execute(self, context):
return context.request.user_uid


# class FunctionAdaptor(FunctionExpression):
# def execute(self, context):
# return request.adaptor


class FunctionAvailable(FunctionExpression):
def execute(self, context, resource):
return context.environment.resource_enabled(resource)
Expand Down

0 comments on commit f34d535

Please sign in to comment.