Skip to content

Commit 0af502a

Browse files
committed
Fixed Python formatting issues
1 parent abebaa6 commit 0af502a

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

share/smack/frontend.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
import re
44
import json
55
from .utils import temporary_file, try_command, temporary_directory,\
6-
llvm_exact_bin, smack_root, smack_header_path, smack_headers,\
7-
smack_lib
6+
llvm_exact_bin, smack_headers, smack_lib
87
from .versions import RUST_VERSION
98

109
# Needed for cargo operations

share/smack/top.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,8 +1088,7 @@ def verify_bpl_portfolio(args):
10881088

10891089
for thread in list(portfolio_config.keys()):
10901090
async_result = p.apply_async(thread_verify_bpl,
1091-
args=(copy.deepcopy(args),
1092-
portfolio_config[thread]))
1091+
args=(copy.deepcopy(args), portfolio_config[thread]))
10931092
results[async_result] = thread
10941093

10951094
# TODO: revisit this loop to improve efficiency

share/smack/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ def smack_headers(args):
124124
paths.append(smack_header_path())
125125
return paths
126126

127+
127128
def smack_lib():
128129
return os.path.join(smack_root(), 'share', 'smack', 'lib')
129130

130131

131132
def smack_portfolio_path():
132-
return os.path.join(smack_root(), 'share', 'smack',\
133+
return os.path.join(smack_root(), 'share', 'smack',
133134
'default-portfolio.yaml')
134-

0 commit comments

Comments
 (0)