From 55b82ab1c01558149a945eeeb80aa7d3cf1d774e Mon Sep 17 00:00:00 2001 From: Scoder12 <34356756+Scoder12@users.noreply.github.com> Date: Mon, 27 Jul 2020 17:04:03 -0700 Subject: [PATCH] Switch docstring to triple quotes --- src/replit/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replit/__init__.py b/src/replit/__init__.py index 676346e..d0a010a 100644 --- a/src/replit/__init__.py +++ b/src/replit/__init__.py @@ -4,7 +4,7 @@ from .database import db def clear() -> None: - "Clear is used to clear the terminal." + """Clear the terminal.""" print("\033[H\033[2J", end="", flush=True)