Tenho um df com uma coluna com algumas informações sobre pofissionais, como a seguir:
profissionais['DS_SITUACAO_FUNCIONAL'].unique()
array(["['ELETRICISTA']", "['ELETRONICO']",
"['PINTOR']", "['EXPERIENTE']", "['ADULTO']",
"['MARCENEIRO']", "['PROFISSIONAL']"], dtype=object)
O comando a seguir retorna o erro abaixo
profissionais = profissionais.query("DS_SITUACAO_FUNCIONAL=='['PINTOR']", "['EXPERIENTE']", "['ADULTO']")
ValueError: For argument "inplace" expected type bool, received type str.