Absolute value function used in the objective of Disciplined Convex Program (CVXPY)

I am trying to run the following optimization using CVXPY:


weights_vec = cp.Variable(10)

er_vec = cp.Parameter(10, value=np.random.randn(10))
prev_h_vec = cp.Parameter(10, value=np.ones(10))
tcost_vec = cp.Parameter(10, value=[0.03]*10)


objective = cp.Maximize(weights_vec @ er_vec - tcost_vec @ cp.abs(weights_vec - prev_h_vec))
prob = cp.Problem(objective)
prob.solve()

However, I get the following error:

cvxpy.error.DCPError: Problem does not follow DCP rules. Specifically:
The objective is not DCP. Its following subexpressions are not:
param516 @ abs(var513 + -param515)

The absolute function is convex. Hence, I am not quite sure why CVX is throwing an error for the absolute value function in the objective.

CVXPY is a different tool than CVX. You can seek help at https://groups.google.com/g/cvxpy