mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
pylint W0406(import-self)
This commit is contained in:
parent
8608858651
commit
ce42d889cd
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ def get_release(release_name):
|
|||
"""Normalizes the release codenames
|
||||
This allows tasks to query for release codenames rather than 'stable', 'unstable' etc.
|
||||
"""
|
||||
from . import releases
|
||||
from . import releases # pylint: disable=import-self
|
||||
release = getattr(releases, release_name, None)
|
||||
if release is None or not isinstance(release, _Release):
|
||||
raise UnknownReleaseException('The release `{name}\' is unknown'.format(name=release))
|
||||
|
|
Loading…
Add table
Reference in a new issue