Syntastic is raising an error each ":w" refered to Python3 class defintion. I also tryed to disabled messages window without sucess using
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 0
let g:syntastic_check_on_wq = 0
The class definition raising the error is something like
class SomeClass(metaclass=PoolMeta):
pass
The question is how coudl I disable that window in order to prevent raising that wrong alerts?
Image attached

You probably want to set syntastic_auto_loc_list to 0 or 2.