From f1ed8035252d30e2637b6d38de740b1351b89f97 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 16 Jun 2022 18:03:51 -0700 Subject: [PATCH] formatting --- docs/utils.md | 2 +- jc/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/utils.md b/docs/utils.md index a73d980f..7dac5f2e 100644 --- a/docs/utils.md +++ b/docs/utils.md @@ -106,7 +106,7 @@ def has_data(data: str) -> bool ``` Checks if the input contains data. If there are any non-whitespace -characters then return True, else return False. +characters then return `True`, else return `False`. Parameters: diff --git a/jc/utils.py b/jc/utils.py index 70791767..0504b367 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -143,7 +143,7 @@ def compatibility(mod_name: str, compatible: List, quiet: bool = False) -> None: def has_data(data: str) -> bool: """ Checks if the input contains data. If there are any non-whitespace - characters then return True, else return False. + characters then return `True`, else return `False`. Parameters: