I hereby claim:
- I am kushaldas on github.
- I am kushaldas (https://keybase.io/kushaldas) on keybase.
- I have a public key whose fingerprint is A85F F376 759C 994A 8A11 68D8 D821 9C8C 43F6 C5E1
To claim this, I am signing this object:
| # -*- coding: utf-8 -*- | |
| import config as _config | |
| import typing | |
| # https://www.python.org/dev/peps/pep-0484/#runtime-or-type-checking | |
| if typing.TYPE_CHECKING: | |
| # flake8 can not understand type annotation yet. | |
| # That is why all type annotation realted import | |
| # statements has to be marked as noqa. |
I hereby claim:
To claim this, I am signing this object:
| # Let us download the image first | |
| wget $1 | |
| if [ $? -ne 0 ] | |
| then | |
| echo "Downloading $1 failed." | |
| exit 1 | |
| fi | |
| # Now we need the filename |