Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
TalAmuyal committed Apr 28, 2021
1 parent 13a0cfa commit 241aacc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pytest_elasticsearch/executor.py
Expand Up @@ -81,7 +81,10 @@ def version(self):
"""
if not self._version:
try:
output = check_output([self.executable, '-Vv'], stderr=STDOUT).decode('utf-8')
output = check_output(
[self.executable, '-Vv'],
stderr=STDOUT,
).decode('utf-8')
match = re.search(
r'Version: (?P<major>\d)\.(?P<minor>\d)\.(?P<patch>\d+)',
output
Expand Down

0 comments on commit 241aacc

Please sign in to comment.