Skip to content

Commit b18c875

Browse files
committed
Fix line break error
Signed-off-by: marinamoore <[email protected]>
1 parent a5db472 commit b18c875

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tuf/client/updater.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2630,8 +2630,7 @@ def _refresh_targets_metadata(self, rolename='targets',
26302630
# Add the role if it is listed in snapshot. If snapshot merkle
26312631
# trees are used, the snaphot check will be done later when
26322632
# the merkle tree is verified
2633-
if 'merkle_root' in self.metadata['current']['timestamp'] or
2634-
rolename + '.json' in self.metadata['current']['snapshot']['meta']:
2633+
if 'merkle_root' in self.metadata['current']['timestamp'] or rolename + '.json' in self.metadata['current']['snapshot']['meta']:
26352634
roles_to_update.append(rolename)
26362635

26372636
if refresh_all_delegated_roles:

0 commit comments

Comments
 (0)