File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
from pathlib import Path
15
15
16
16
def main ():
17
- folder = Path (' docs/source/whatsnew/pr/' )
18
- files = list (folder .glob (' *.rst' ))
17
+ folder = Path (" docs/source/whatsnew/pr/" )
18
+ files = list (folder .glob (" *.rst" ))
19
19
print (files )
20
20
21
21
for filepath in files :
22
- print (' Adding pseudo-title to:' , filepath .name )
23
- title = filepath .name [:- 4 ].split ('/' )[- 1 ].replace ('-' , ' ' ).capitalize ()
22
+ print (" Adding pseudo-title to:" , filepath .name )
23
+ title = filepath .name [:- 4 ].split ("/" )[- 1 ].replace ("-" , " " ).capitalize ()
24
24
25
25
data = filepath .read_text ()
26
26
try :
@@ -29,9 +29,9 @@ def main():
29
29
except IndexError :
30
30
pass
31
31
32
- with filepath .open ('w' ) as f :
33
- f .write (title + ' \n ' )
34
- f .write ('=' * len (title )+ ' \n \n ' )
32
+ with filepath .open ("w" ) as f :
33
+ f .write (title + " \n " )
34
+ f .write ("=" * len (title ) + " \n \n " )
35
35
f .write (data )
36
36
37
37
if __name__ == '__main__' :
You can’t perform that action at this time.
0 commit comments