Commit 335da0db by Bryce Drennan Committed by GitHub

Merge pull request #1267 from darrenleeweber/vcs-dependency-typing

Add bool typing for VCSDependency.accepts_prereleases
parents 1caf20a2 f044dd17
......@@ -76,5 +76,5 @@ class VCSDependency(Dependency):
def is_vcs(self): # type: () -> bool
return True
def accepts_prereleases(self):
def accepts_prereleases(self): # type: () -> bool
return True
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment