Browse Source

ignore pylint unexpected-keyword-arg for pandas<0.23

Fabian Peter Hammerle 5 years ago
parent
commit
6f0484ee66
1 changed files with 1 additions and 0 deletions
  1. 1 0
      freesurfer_volume_reader/__main__.py

+ 1 - 0
freesurfer_volume_reader/__main__.py

@@ -55,6 +55,7 @@ def main():
     if parse_version_string(pandas.__version__) < (0, 23):
         united_volume_frame = pandas.concat(volume_frames, ignore_index=True)
     else:
+        # pylint: disable=unexpected-keyword-arg
         united_volume_frame = pandas.concat(volume_frames, ignore_index=True, sort=False)
     print(united_volume_frame.to_csv(index=False))