Incorrect comparison symbol format (E266)
Do not use the symbols =>, =<, or ><. Instead use >=, <=, or <>.
Anti-pattern
If Bar >< 4 Then
End If
Best practice
If Bar <> 4 Then
End If
Do not use the symbols =>, =<, or ><. Instead use >=, <=, or <>.
If Bar >< 4 Then
End If
If Bar <> 4 Then
End If