diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-09-17 11:36:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-17 11:36:51 +0200 |
| commit | 0d9959e649c9625c3264382698b49ec6b99096f0 (patch) | |
| tree | 3588e22e5ccd11389e5c5dc3169ca87d4f59237b /searx/network/__init__.py | |
| parent | 8905607d1c6975146c258d6afcd685272216cef8 (diff) | |
| parent | 443bf35e09ce27d07c18c01d455886e85ead53f9 (diff) | |
Merge pull request #325 from searxng/dependabot/pip/master/pylint-2.11.1
Bump pylint from 2.10.2 to 2.11.1
Diffstat (limited to 'searx/network/__init__.py')
| -rw-r--r-- | searx/network/__init__.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/searx/network/__init__.py b/searx/network/__init__.py index 21c4c27b5..bcc0b690a 100644 --- a/searx/network/__init__.py +++ b/searx/network/__init__.py @@ -43,24 +43,20 @@ THREADLOCAL = threading.local() """Thread-local data is data for thread specific values.""" def reset_time_for_thread(): - global THREADLOCAL THREADLOCAL.total_time = 0 def get_time_for_thread(): """returns thread's total time or None""" - global THREADLOCAL return THREADLOCAL.__dict__.get('total_time') def set_timeout_for_thread(timeout, start_time=None): - global THREADLOCAL THREADLOCAL.timeout = timeout THREADLOCAL.start_time = start_time def set_context_network_name(network_name): - global THREADLOCAL THREADLOCAL.network = get_network(network_name) @@ -69,13 +65,11 @@ def get_context_network(): If unset, return value from :py:obj:`get_network`. """ - global THREADLOCAL return THREADLOCAL.__dict__.get('network') or get_network() def request(method, url, **kwargs): """same as requests/requests/api.py request(...)""" - global THREADLOCAL time_before_request = default_timer() # timeout (httpx) |