Skip to content

Instantly share code, notes, and snippets.

@mstuttgart
Created May 14, 2024 12:41
Show Gist options
  • Save mstuttgart/310f7a13a540c7bf893d7fdf64960472 to your computer and use it in GitHub Desktop.
Save mstuttgart/310f7a13a540c7bf893d7fdf64960472 to your computer and use it in GitHub Desktop.
Skip lines with Python Black formmater
def soma(a, b):
# ignora apenas a linha abaixo
soma = a + b # fmt: skip
return soma
# ignora todo o bloco de codigo a abaixo
# fmt: off
def subtracao(a, b):
sub = a - b
return sub
# fmt: on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment