DevClad-Inc / devclad

Unassigned string statement PYL-W0105
Anti-pattern
Minor
a year agoa year old
String statement has no effect
105    def get_flat_values(self: "SocialProfile", field: str) -> list:
106        match field:
107            case "circle_symmetrical":
108                """because circle is assymetrical by default, adding the user does not add them to your circle.109                adding is being managed by the views so only certain cases allow adding in circle 2-way"""
110                list_one = self.circle_symmetrical.all()
111                list_two = self.circle.all()