Skip to content

Commit fd470a5

Browse files
committed
Reinstalled dev env requirements and triggered a commit to try and fix formatting changes.
1 parent 3782d28 commit fd470a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/checkspecs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ def _uri2path(self, uri):
112112
return path
113113

114114
def _path2uri(self, dirpath):
115-
"""Convert directory path to uri"""
115+
""" Convert directory path to uri """
116116
relpath = dirpath.replace(self.root_path, self.package_name)
117117
if relpath.startswith(os.path.sep):
118118
relpath = relpath[1:]
119119
return relpath.replace(os.path.sep, ".")
120120

121121
def _parse_module(self, uri):
122-
"""Parse module defined in *uri*"""
122+
""" Parse module defined in *uri* """
123123
filename = self._uri2path(uri)
124124
if filename is None:
125125
# nothing that we could handle here.
@@ -130,7 +130,7 @@ def _parse_module(self, uri):
130130
return functions, classes
131131

132132
def _parse_lines(self, linesource, module):
133-
"""Parse lines of text for functions and classes"""
133+
""" Parse lines of text for functions and classes """
134134
functions = []
135135
classes = []
136136
for line in linesource:

0 commit comments

Comments
 (0)