From 95f9e5a925980e3d6a9ef072a5746768dca26ed7 Mon Sep 17 00:00:00 2001 From: "Jay Newlin (PW)" Date: Mon, 17 Dec 2018 17:38:27 -0500 Subject: [PATCH] Ignore false partial branch --- atst/domain/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atst/domain/auth.py b/atst/domain/auth.py index 10db8273..c4be2eea 100644 --- a/atst/domain/auth.py +++ b/atst/domain/auth.py @@ -51,7 +51,7 @@ def get_current_user(): def logout(): - if session.get("user_id"): + if session.get("user_id"): # pragma: no branch del (session["user_id"])