File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 37
37
def read (fname ):
38
38
"""
39
39
Utility function to cat in a file (used for the README)
40
- @param fname: the name of the file to read, relative to the directory containing this file
40
+ @param fname: the name of the file to read,
41
+ relative to the directory containing this file
41
42
@return: The string content of the opened file
42
43
"""
43
44
with open (os .path .join (repository_dir , fname ), mode = 'r' ) as f :
Original file line number Diff line number Diff line change 37
37
def read (fname ):
38
38
"""
39
39
Utility function to cat in a file (used for the README)
40
- @param fname: the name of the file to read, relative to the directory containing this file
40
+ @param fname: the name of the file to read,
41
+ relative to the directory containing this file
41
42
@return: The string content of the opened file
42
43
"""
43
44
with open (os .path .join (repository_dir , fname ), mode = 'r' ) as f :
Original file line number Diff line number Diff line change 34
34
def read (fname ):
35
35
"""
36
36
Utility function to cat in a file (used for the README)
37
- @param fname: the name of the file to read, relative to the directory containing this file
37
+ @param fname: the name of the file to read,
38
+ relative to the directory containing this file
38
39
@return: The string content of the opened file
39
40
"""
40
41
with open (os .path .join (repository_dir , fname ), mode = 'r' ) as f :
Original file line number Diff line number Diff line change 27
27
def read (fname ):
28
28
"""
29
29
Utility function to cat in a file (used for the README)
30
- @param fname: the name of the file to read, relative to the directory containing this file
30
+ @param fname: the name of the file to read,
31
+ relative to the directory containing this file
31
32
@return: The string content of the opened file
32
33
"""
33
34
with open (os .path .join (repository_dir , fname ), mode = 'r' ) as f :
You can’t perform that action at this time.
0 commit comments