Dear @nschloe,
This line
|
print(pipdate.check(__name__, __version__)) |
prints None when importing.
Could we do somethings like this ?
else:
if pipdate.needs_checking(__name__):
# print(pipdate.check(__name__, __version__)) # Displays None
to_print = pipdate.check(__name__, __version__)
if to_print is not None:
print(to_print)
Dear @nschloe,
This line
materials/materials/__init__.py
Line 93 in b5df215
prints None when importing.
Could we do somethings like this ?
else:if pipdate.needs_checking(__name__):# print(pipdate.check(__name__, __version__)) # Displays Noneto_print = pipdate.check(__name__, __version__)if to_print is not None:print(to_print)