File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -112,14 +112,14 @@ def _uri2path(self, uri):
112
112
return path
113
113
114
114
def _path2uri (self , dirpath ):
115
- """Convert directory path to uri"""
115
+ """ Convert directory path to uri """
116
116
relpath = dirpath .replace (self .root_path , self .package_name )
117
117
if relpath .startswith (os .path .sep ):
118
118
relpath = relpath [1 :]
119
119
return relpath .replace (os .path .sep , "." )
120
120
121
121
def _parse_module (self , uri ):
122
- """Parse module defined in *uri*"""
122
+ """ Parse module defined in *uri* """
123
123
filename = self ._uri2path (uri )
124
124
if filename is None :
125
125
# nothing that we could handle here.
@@ -130,7 +130,7 @@ def _parse_module(self, uri):
130
130
return functions , classes
131
131
132
132
def _parse_lines (self , linesource , module ):
133
- """Parse lines of text for functions and classes"""
133
+ """ Parse lines of text for functions and classes """
134
134
functions = []
135
135
classes = []
136
136
for line in linesource :
You can’t perform that action at this time.
0 commit comments