diff options
Diffstat (limited to 'numpy/testing/print_coercion_tables.py')
-rwxr-xr-x | numpy/testing/print_coercion_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/print_coercion_tables.py b/numpy/testing/print_coercion_tables.py index 7b5320d7e..d87544987 100755 --- a/numpy/testing/print_coercion_tables.py +++ b/numpy/testing/print_coercion_tables.py @@ -4,7 +4,7 @@ import numpy as np # Generic object that can be added, but doesn't do anything else -class GenericObject: +class GenericObject(object): def __init__(self, v): self.v = v |