Skip to content

Commit 3dc8c38

Browse files
cpcloudnealrichardson
authored andcommitted
style: fix lints
1 parent 8952500 commit 3dc8c38

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

pins/boards.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,9 @@ def pin_meta(self, name, version: str = None) -> Meta:
158158

159159
path_meta = self.construct_path([*components, meta_name])
160160
with self._open_pin_meta(path_meta) as (f, local):
161-
meta = self.meta_factory.read_pin_yaml(f, pin_name, selected_version, local=local)
161+
meta = self.meta_factory.read_pin_yaml(
162+
f, pin_name, selected_version, local=local
163+
)
162164

163165
return meta
164166

@@ -936,7 +938,9 @@ def pin_meta(self, name, version=None):
936938
# empty string to mark version (it ultimately is ignored)
937939
path_meta = self.construct_path([pin_name, "", meta_name])
938940
with self._open_pin_meta(path_meta) as (f, local):
939-
meta = self.meta_factory.read_pin_yaml(f, pin_name, VersionRaw(""), local=local)
941+
meta = self.meta_factory.read_pin_yaml(
942+
f, pin_name, VersionRaw(""), local=local
943+
)
940944

941945
# TODO(#59,#83): handle caching, and then re-enable pin_read.
942946
# self._touch_cache(path_meta)

0 commit comments

Comments
 (0)