Fix syntax for flake8 passing (#2096)

* Fix syntax for flake8 passing

* fixup! Format Python code with psf/black push

* # fmt: off / # fmt: on

* updating DIRECTORY.md

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
Nika Losaberidze
2020-06-12 08:51:47 +04:00
committed by GitHub
parent ec2d900b03
commit 8bb7b8f457
4 changed files with 11 additions and 6 deletions

View File

@@ -11,6 +11,6 @@ def perfect_cube(n: int) -> bool:
return (val * val * val) == n
if(__name__ == '__main__'):
if __name__ == "__main__":
print(perfect_cube(27))
print(perfect_cube(4))