şunun yansıması https://github.com/pypa/pip
1
1
Çatalla 0

Fixed useless `else` cluase after loop inside `get_version` function in setup.py

Bu işleme şunda yer alıyor:
Avinash Karhana 2020-07-11 02:15:29 +05:30
ebeveyn 15b7afbcad
işleme 135e9c1369
2 değiştirilmiş dosya ile 1 ekleme ve 2 silme

Dosyayı Görüntüle

Dosyayı Görüntüle

@ -22,8 +22,7 @@ def get_version(rel_path):
# __version__ = "0.9"
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError("Unable to find version string.")
raise RuntimeError("Unable to find version string.")
long_description = read('README.rst')