Skip to content

Commit fffc858

Browse files
author
Paulo Barros
committed
Make classes inherit from object
1 parent a48cfd9 commit fffc858

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrations/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from six import string_types
2525

2626

27-
class Sh:
27+
class Sh(object):
2828
def __init__(self, cwd=None):
2929
self.command = ""
3030
self.cwd = cwd
@@ -42,7 +42,7 @@ def __call__(self, *args, **kwargs):
4242
cwd=self.cwd).stdout.read().decode()
4343

4444

45-
class pull:
45+
class pull(object):
4646
def __init__(self, sh):
4747
self.sh = sh
4848

0 commit comments

Comments
 (0)