Skip to content

Commit 85829a2

Browse files
author
Olli-Pekka Puolitaival
committed
Autoformatting
1 parent 118fd7b commit 85829a2

File tree

10 files changed

+536
-348
lines changed

10 files changed

+536
-348
lines changed

circle_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,20 @@
1919
import shutil
2020
import yaml
2121

22+
2223
def rmtree_readonly(directory):
2324
def remove_readonly(func, path, _):
2425
os.chmod(path, stat.S_IWRITE)
2526
func(path)
2627

2728
shutil.rmtree(directory, onerror=remove_readonly)
2829

30+
2931
tests = None
3032
with open("circle.yml", "r") as f:
3133
types = yaml.load_all(f)
3234
for t in types:
33-
for k,v in t.items():
35+
for k, v in t.items():
3436
if k == 'test':
3537
tests = v['override']
3638

mbed/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
from mbed import main
2+
23
main()

0 commit comments

Comments
 (0)