def test_do_nothing_kw_args(): do_nothing(x=1, b=2, c=3)
def test_do_nothing_some_args(): do_nothing(1, 2, 3)
def test_do_nothing_no_args(): do_nothing()
def test_do_nothing_kw_args(self): # pylint: disable=no-self-use do_nothing(x=1, b=2, c=3)
def test_do_nothing_some_args(self): # pylint: disable=no-self-use do_nothing(1, 2, 3)
def test_do_nothing_no_args(self): # pylint: disable=no-self-use do_nothing()