On Wed, Sep 20, 2017 at 04:06:49PM +0800, Chen Hanxiao wrote: > From: Chen Hanxiao <[email protected]> > > Fix all E125: > Continuation line with same indent as next logical line > > Also remove ignore options of E125 > > Signed-off-by: Chen Hanxiao <[email protected]> > --- > tests/pycodestyle.cfg | 3 +-- > virt-xml | 2 +- > virtManager/connection.py | 6 +++--- > virtManager/details.py | 16 ++++++++-------- > virtManager/domain.py | 44 ++++++++++++++++++++++---------------------- > virtManager/engine.py | 4 ++-- > virtManager/netlist.py | 2 +- > virtManager/viewers.py | 4 ++-- > virtManager/vmmenu.py | 2 +- > virtinst/cli.py | 4 ++-- > virtinst/devicegraphics.py | 2 +- > virtinst/domcapabilities.py | 2 +- > virtinst/guest.py | 4 ++-- > virtinst/osdict.py | 2 +- > virtinst/pollhelpers.py | 12 ++++++------ > virtinst/storage.py | 6 +++--- > virtinst/urlfetcher.py | 2 +- > 17 files changed, 58 insertions(+), 59 deletions(-)
[...]
> diff --git a/virtManager/details.py b/virtManager/details.py
> index e74ea5f..8e0bcb2 100644
> --- a/virtManager/details.py
> +++ b/virtManager/details.py
> @@ -1129,12 +1129,12 @@ class vmmDetails(vmmGObjectUI):
> return False
>
> if not self.err.chkbox_helper(
> - self.config.get_confirm_unapplied,
> - self.config.set_confirm_unapplied,
> - text1=(_("There are unapplied changes. Would you like to apply "
> - "them now?")),
> - chktext=_("Don't warn me again."),
> - default=False):
> + self.config.get_confirm_unapplied,
> + self.config.set_confirm_unapplied,
> + text1=(_("There are unapplied changes. Would you like to
> apply "
> + "them now?")),
> + chktext=_("Don't warn me again."),
> + default=False):
> return False
>
> return not self.config_apply(row=row)
> @@ -2275,8 +2275,8 @@ class vmmDetails(vmmGObjectUI):
> logging.debug("Removing device: %s", devobj)
>
> if not self.err.chkbox_helper(self.config.get_confirm_removedev,
> - self.config.set_confirm_removedev,
> - text1=(_("Are you sure you want to remove this device?"))):
> + self.config.set_confirm_removedev,
> + text1=(_("Are you sure you want to remove this device?"))):
> return
>
> # Define the change
This change will fix the E125 warning but it could be extended to fix
the E128 warning as well. Otherwise these lines would be modified twice
in order to fix both warnings. What I would suggest is to create a
patch series, that fixes all of E126, E127, E128, E125, E129, E122 in
that order. These warnings are slightly related.
Pavel
signature.asc
Description: PGP signature
_______________________________________________ virt-tools-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/virt-tools-list
