summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Patz <martin@recogni.com>2020-03-23 01:04:07 +0100
committerMartin Patz <martin@recogni.com>2020-03-23 01:04:07 +0100
commit1b07640875e3b17b48670a41c8e2a2657b756070 (patch)
tree17ecaee91537d6a3ca85154a0d3222620d8bb44a
parent7e01b0d84cefdeb760e77f21b3c80fc5c65ce429 (diff)
docstrings all end with a dot
-rw-r--r--pywal/util.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/pywal/util.py b/pywal/util.py
index b83e30c..5cd3135 100644
--- a/pywal/util.py
+++ b/pywal/util.py
@@ -50,7 +50,7 @@ class Color:
@property
def octal(self):
- """Export color in octal"""
+ """Export color in octal."""
return "%s%s" % ("#", oct(int(self.hex_color[1:], 16))[2:])
@property
@@ -79,17 +79,17 @@ class Color:
return "%.3f" % (hex_to_rgb(self.hex_color)[2]/255.)
def lighten(self, percent):
- """Lighten color by percent"""
+ """Lighten color by percent."""
percent = float(re.sub(r'[\D\.]', '', str(percent)))
return Color(lighten_color(self.hex_color, percent / 100))
def darken(self, percent):
- """Darken color by percent"""
+ """Darken color by percent."""
percent = float(re.sub(r'[\D\.]', '', str(percent)))
return Color(darken_color(self.hex_color, percent / 100))
def saturate(self, percent):
- """Saturate a color"""
+ """Saturate a color."""
percent = float(re.sub(r'[\D\.]', '', str(percent)))
return Color(saturate_color(self.hex_color, percent / 100))
@@ -108,7 +108,7 @@ def read_file_json(input_file):
def read_file_raw(input_file):
"""Read data from a file as is, don't strip
- newlines or other special characters.."""
+ newlines or other special characters."""
with open(input_file, "r") as file:
return file.readlines()