]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sat, 26 Aug 2023 21:47:29 +0000 (23:47 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 26 Aug 2023 21:47:29 +0000 (23:47 +0200)
- if/elif/raise blocks should be separated from other logic
- tpzo fixed

fba/helpers/cookies.py
fba/helpers/domain.py

index eebc7b8c74d1c9264a387a2992a30144ae682078..ff2457aad7ea423b47c1f2c1901bc4600c9c6e45 100644 (file)
@@ -21,7 +21,7 @@ from fba.helpers import domain as domain_helper
 logging.basicConfig(level=logging.INFO)
 logger = logging.getLogger(__name__)
 
-# Cookies stor
+# Cookies storage
 _cookies = {}
 
 def store (domain: str, cookies: dict):
index 96aa189d4ef7e9c0610a6d86a280929f5ad40b84..9f8c578b6314709683a163ce96f0b2c7d4ecb5fe 100644 (file)
@@ -67,13 +67,13 @@ def is_in_url(domain: str, url: str) -> bool:
 
 def is_wanted(domain: str) -> bool:
     logger.debug("domain='%s' - CALLED!", domain)
-
-    wanted = True
     if not isinstance(domain, str):
         raise ValueError(f"Parameter domain[]='{type(domain)}' is not of type 'str'")
     elif domain == "":
         raise ValueError("Parameter 'domain' is empty")
-    elif domain.lower() != domain:
+
+    wanted = True
+    if domain.lower() != domain:
         wanted = False
     elif not validators.domain(domain.split("/")[0]):
         logger.debug("domain='%s' is not a valid domain name - setting False ...", domain)