diff --git a/style50/__init__.py b/style50/__init__.py index b2d5375..defc3a2 100644 --- a/style50/__init__.py +++ b/style50/__init__.py @@ -4,11 +4,11 @@ # https://stackoverflow.com/questions/17583443/what-is-the-correct-way-to-share-package-version-with-setup-py-and-the-package try: _dist = get_distribution("style50") - # Normalize path for cross-OS compatibility + # Normalize path for cross-OS compatibility. _dist_loc = os.path.normcase(_dist.location) _here = os.path.normcase(__file__) if not _here.startswith(os.path.join(_dist_loc, "style50")): - # this version is not installed, but another version is. + # This version is not installed, but another version is. raise DistributionNotFound except DistributionNotFound: __version__ = "locally installed, no version information available" @@ -19,5 +19,5 @@ from .style50 import Style50, StyleCheck, Error -# Ensure that all language checks are registered +# Ensure that all language checks are registered. from . import languages