flake8 cleanup

This commit is contained in:
Ralf W. Grosse-Kunstleve 2021-01-12 11:46:23 -08:00
parent d3833d2cbf
commit db529c805c
5 changed files with 22 additions and 25 deletions

View File

@ -2,14 +2,12 @@
# pybind11 equivalent of Boost.Python test:
# https://github.com/rwgk/rwgk_tbx/blob/6c9a6d6bc72d5c1b8609724433259c5b47178680/tst_cpp_base_py_derived.py
# See also: https://github.com/pybind/pybind11/issues/1333 (this was the starting point)
import pytest
from pybind11_tests import cpp_base_py_derived as m
class drvd(m.base):
def __init__(self, _num = 200):
class drvd(m.base): # noqa: N801
def __init__(self, _num=200):
super().__init__()
self._drvd_num = _num

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
import pytest
from pybind11_tests import private_first_base as m

View File

@ -7,6 +7,7 @@ CBASE_GET_INT_RESULT = 90146438
CDERIVED_GET_INT_RESULT = 31607978
VDERIVED_GET_INT_RESULT = 29852452
def test_concrete():
m.to_cout("")
m.to_cout("")
@ -22,6 +23,7 @@ def test_concrete():
m.pass_shared_cderived(cb)
m.to_cout("")
def test_virtual():
m.to_cout("")
m.to_cout("")

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
import pytest
from pybind11_tests import smart_ptr_private_first_base as m

View File

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*-
import pytest
from pybind11_tests import type_caster_bare_interface_demo as m