From 6b31fa47d131a4ebcfcd322eba378d183d6a3eb9 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 11 Nov 2012 22:25:08 +0000 Subject: [PATCH] pep8 fixes --- morituri/rip/drive.py | 3 +-- morituri/rip/offset.py | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/morituri/rip/drive.py b/morituri/rip/drive.py index edc9aa6..7abbad4 100644 --- a/morituri/rip/drive.py +++ b/morituri/rip/drive.py @@ -50,9 +50,8 @@ class List(logcommand.LogCommand): if not paths: print 'No drives found.' + class Drive(logcommand.LogCommand): summary = "handle drives" subCommandClasses = [List, ] - - diff --git a/morituri/rip/offset.py b/morituri/rip/offset.py index 57d86f5..3f2babb 100644 --- a/morituri/rip/offset.py +++ b/morituri/rip/offset.py @@ -218,5 +218,3 @@ class Offset(logcommand.LogCommand): summary = "handle drive offsets" subCommandClasses = [Find, ] - -