Skip to content

Commit 5e3ba53

Browse files
committed
Remove the dead code.
1 parent 5d07165 commit 5e3ba53

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

about_code_tool/about.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -515,17 +515,6 @@ def posix_path(path):
515515
return path.replace(ntpath.sep, posixpath.sep)
516516

517517

518-
def native_path(path):
519-
"""
520-
Return a path using the current OS path separator given a path that may
521-
contain posix or windows separators, converting / to \ on windows and \ to
522-
/ on posix OSes.
523-
"""
524-
path = path.replace(ntpath.sep, os.path.sep)
525-
path = path.replace(posixpath.sep, os.path.sep)
526-
return path
527-
528-
529518
def is_about_file(path):
530519
"""
531520
Return True if the path represents a valid ABOUT file name.

0 commit comments

Comments
 (0)