According to this part of the documentation :
SVC, NuSVC, and LinearSVC are classes that can classify multiple classes in a dataset.
[...]
On the other hand, LinearSVC implements a multi-class one-vs-the-rest strategy, thus training n_class models. If there are only two classes, only one model is trained:
Therefore, it by default supports multiclass classification.
source share