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

Commit a23c4d8

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

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
@@ -64,14 +64,14 @@ def test_CONSUL_HTTP_ADDR_scheme_http(self):
6464
CONSUL_HTTP_ADDR = '127.0.0.23:4242'
6565
with self.environ(CONSUL_HTTP_ADDR=CONSUL_HTTP_ADDR):
6666
c = Consul.from_env()
67-
assert c.http.base_uri == 'http://'+ CONSUL_HTTP_ADDR
67+
assert c.http.base_uri == 'http://' + CONSUL_HTTP_ADDR
6868

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

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

0 commit comments

Comments
 (0)