From 0e833365e0a04742de5671c9b3478c41d51c1bc5 Mon Sep 17 00:00:00 2001 From: Chad Sharp Date: Mon, 14 Aug 2017 09:36:52 -0400 Subject: [PATCH] Fix commenting style --- style50/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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