Re: [dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-10-25 Thread Thomas Monjalon
02/09/2021 18:04, Stephen Hemminger: > On Thu, 2 Sep 2021 16:50:14 +0100 > Bruce Richardson wrote: > > On Thu, Sep 02, 2021 at 08:24:58AM -0700, Stephen Hemminger wrote: > > > On Thu, 2 Sep 2021 09:10:47 +0100 > > > Bruce Richardson wrote: > > > > > > > On Wed, Sep 01, 2021 at 02:27:07PM -0700

Re: [dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-09-02 Thread Stephen Hemminger
On Thu, 2 Sep 2021 16:50:14 +0100 Bruce Richardson wrote: > On Thu, Sep 02, 2021 at 08:24:58AM -0700, Stephen Hemminger wrote: > > On Thu, 2 Sep 2021 09:10:47 +0100 > > Bruce Richardson wrote: > > > > > On Wed, Sep 01, 2021 at 02:27:07PM -0700, Stephen Hemminger wrote: > > > > This fixes mo

Re: [dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-09-02 Thread Bruce Richardson
On Thu, Sep 02, 2021 at 08:24:58AM -0700, Stephen Hemminger wrote: > On Thu, 2 Sep 2021 09:10:47 +0100 > Bruce Richardson wrote: > > > On Wed, Sep 01, 2021 at 02:27:07PM -0700, Stephen Hemminger wrote: > > > This fixes most of the warnings from the Flake8 style checker. > > > The ones remaing are

Re: [dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-09-02 Thread Stephen Hemminger
On Thu, 2 Sep 2021 09:10:47 +0100 Bruce Richardson wrote: > On Wed, Sep 01, 2021 at 02:27:07PM -0700, Stephen Hemminger wrote: > > This fixes most of the warnings from the Flake8 style checker. > > The ones remaing are long lines (we allow > 79 characters) > > and a line break warning. The line

Re: [dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-09-02 Thread Burakov, Anatoly
On 01-Sep-21 10:27 PM, Stephen Hemminger wrote: This fixes most of the warnings from the Flake8 style checker. The ones remaing are long lines (we allow > 79 characters) and a line break warning. The line break style changed in later versions of PEP 8 and the tool is not updated. https://www.fl

Re: [dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-09-02 Thread Bruce Richardson
On Wed, Sep 01, 2021 at 02:27:07PM -0700, Stephen Hemminger wrote: > This fixes most of the warnings from the Flake8 style checker. > The ones remaing are long lines (we allow > 79 characters) > and a line break warning. The line break style changed in later > versions of PEP 8 and the tool is not

[dpdk-dev] [RFC] devbind: conform to PEP 8 recommended style

2021-09-01 Thread Stephen Hemminger
This fixes most of the warnings from the Flake8 style checker. The ones remaing are long lines (we allow > 79 characters) and a line break warning. The line break style changed in later versions of PEP 8 and the tool is not updated. https://www.flake8rules.com/rules/W503.html Signed-off-by: Step