File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -263,21 +263,21 @@ def dryrun_echo(
263
263
"""Print information about how labels would be updated on sync."""
264
264
265
265
if labels_to_delete :
266
- click .echo (f "This would delete the following labels:" )
266
+ click .echo ("This would delete the following labels:" )
267
267
for name in labels_to_delete :
268
268
click .echo (f" - { name } " )
269
269
270
270
if labels_to_update :
271
- click .echo (f "This would update the following labels:" )
271
+ click .echo ("This would update the following labels:" )
272
272
for name in labels_to_update :
273
273
click .echo (f" - { name } " )
274
274
275
275
if labels_to_create :
276
- click .echo (f "This would create the following labels:" )
276
+ click .echo ("This would create the following labels:" )
277
277
for name in labels_to_create :
278
278
click .echo (f" - { name } " )
279
279
280
280
if labels_to_ignore :
281
- click .echo (f "This would NOT modify the following labels:" )
281
+ click .echo ("This would NOT modify the following labels:" )
282
282
for name in labels_to_ignore :
283
283
click .echo (f" - { name } " )
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def list_labels(self, repo: Repository) -> List[Label]:
84
84
85
85
while next_page is not None :
86
86
87
- logger .debug (f "Requesting next page of labels" )
87
+ logger .debug ("Requesting next page of labels" )
88
88
response = self .session .get (next_page ["url" ], headers = headers )
89
89
90
90
if response .status_code != 200 :
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def load_repository_info(remote_name: str = "origin") -> typing.Optional[Reposit
27
27
)
28
28
29
29
if proc .returncode != 0 :
30
- logger .debug (f "Error running git remote get-url." )
30
+ logger .debug ("Error running git remote get-url." )
31
31
return None
32
32
33
33
remote_url = proc .stdout .strip ()
You can’t perform that action at this time.
0 commit comments