Skip to content

Commit

Permalink
Update versioneer: 0.18 → 0.20
Browse files Browse the repository at this point in the history
Fix LGTM.com error: Suspicious unused loop iteration variable
For loop variable 'i' is not used in the loop body.
  • Loading branch information
DimitriPapadopoulos committed Sep 14, 2021
1 parent bbcaa9b commit cc7a44a
Show file tree
Hide file tree
Showing 3 changed files with 602 additions and 258 deletions.
7 changes: 3 additions & 4 deletions bids-validator/bids_validator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""BIDS validator common Python package."""
from ._version import get_versions
from .bids_validator import BIDSValidator
__version__ = get_versions()['version']
__all__ = ['BIDSValidator']
del get_versions

from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit cc7a44a

Please sign in to comment.