“Docstring Pygame” Ответ

Отсутствующая функция или метод Docstring Pylint

You can add "--errors-only" flag for pylint to disable warnings.

To do this, go to settings. Edit the following line:

"python.linting.pylintArgs": []

As

"python.linting.pylintArgs": ["--errors-only"]
Funny Fowl

Docstring Pygame


def move_forward(self):
        self.rect.x -= self.velocity
        self.rotate()

 
Racheel

Docstring Pygame


def move_forward(self):
        self.rect.x -= self.velocity
        self.rotate()

    def rotate(self):
        self.angle += 5
        self.image = pygame.transform.rotozoom(self.origine_image, self.angle, 1)
        self.rect = self.image.get_rect(center=self.rect.center)
Racheel

Ответы похожие на “Docstring Pygame”

Вопросы похожие на “Docstring Pygame”

Смотреть популярные ответы по языку

Смотреть другие языки программирования