From 73ba9ee9b60b127c4e07bdae496633d742df760d Mon Sep 17 00:00:00 2001 From: Scoder12 <34356756+Scoder12@users.noreply.github.com> Date: Tue, 11 Aug 2020 15:43:16 -0700 Subject: [PATCH] Obey D402 --- src/replit/database/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/replit/database/__init__.py b/src/replit/database/__init__.py index c291066..e3308ce 100644 --- a/src/replit/database/__init__.py +++ b/src/replit/database/__init__.py @@ -262,7 +262,7 @@ class AsyncReplitDb: return tuple(data.values()) async def items(self) -> Tuple[Tuple[str]]: - """Convert the database to a dict and return the dict's items(). + """Convert the database to a dict and return the dict's items method. Returns: Tuple[Tuple[str]]: The items @@ -539,7 +539,7 @@ class ReplitDb(dict): return tuple(data.values()) def items(self) -> Tuple[Tuple[str]]: - """Convert the database to a dict and return the dict's items(). + """Convert the database to a dict and return the dict's items method. Returns: Tuple[Tuple[str]]: The items