Skip to content

Commit 9ce4706

Browse files
authored
Update error.py
1 parent 0ba077f commit 9ce4706

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/arguments/error.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ def evoke_search_error(self, error_statement):
2121

2222
class LoginError():
2323
def __init__(self, error_statement, success=False):
24-
"""
25-
Implements error printing for User Login
24+
"""Implements error printing for User Login
2625
2726
:error_statement: Error statement to print
2827
:success: Indicates success of login attempt
@@ -35,4 +34,4 @@ def __init__(self, error_statement, success=False):
3534
def evoke_search_error(self):
3635
color = "green" if self.success else "red"
3736
print_text = colored(self.error_statement, color)
38-
print(print_text)
37+
print(print_text)

0 commit comments

Comments
 (0)