From 3a102af6ed1b7791ae9f52c918b30696d6b146a2 Mon Sep 17 00:00:00 2001 From: Matt Shirley Date: Sat, 12 May 2018 11:14:26 -0400 Subject: [PATCH] Fix copy/paste indentation --- pyfaidx/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfaidx/__init__.py b/pyfaidx/__init__.py index 054d2d0..1136024 100644 --- a/pyfaidx/__init__.py +++ b/pyfaidx/__init__.py @@ -892,8 +892,8 @@ def long_name(self): @property def __array_interface__(self): """ Implement numpy array interface for issue #139""" - if sys.version_info > (3,): -... buffer = memoryview + if sys.version_info > (3, ): + buffer = memoryview return { 'shape': (len(self), ), 'typestr': '|S1',