🌐 AI搜索 & 代理 主页
Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.

Commit f3f3e53

Browse files
committed
fix flake8 E225
Signed-off-by: Steven Armstrong <steven.armstrong@id.ethz.ch>
1 parent 2b90a50 commit f3f3e53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ def test_CONSUL_HTTP_ADDR_scheme_http(self):
6363
CONSUL_HTTP_ADDR = '127.0.0.23:4242'
6464
with self.environ(CONSUL_HTTP_ADDR=CONSUL_HTTP_ADDR):
6565
c = Consul.from_env()
66-
assert c.http.base_uri == 'http://'+ CONSUL_HTTP_ADDR
66+
assert c.http.base_uri == 'http://' + CONSUL_HTTP_ADDR
6767

6868
def test_CONSUL_HTTP_ADDR_with_CONSUL_HTTP_SSL(self):
6969
CONSUL_HTTP_ADDR = '127.0.0.23:4242'
7070
with self.environ(CONSUL_HTTP_ADDR=CONSUL_HTTP_ADDR,
7171
CONSUL_HTTP_SSL='true'):
7272
c = Consul.from_env()
73-
assert c.http.base_uri == 'https://'+ CONSUL_HTTP_ADDR
73+
assert c.http.base_uri == 'https://' + CONSUL_HTTP_ADDR
7474

7575
def test_CONSUL_HTTP_TOKEN(self):
7676
CONSUL_HTTP_TOKEN = '1bdc2cb4-9b02-4b3c-9df5-eb86214e1a6c'

0 commit comments

Comments
 (0)