uses: actions/checkout@v2 (#1779)

* uses: actions/checkout@v2

* fixup! Format Python code with psf/black push
This commit is contained in:
Christian Clauss
2020-02-21 11:02:35 +01:00
committed by GitHub
parent cb4795616c
commit 59bf115aa1
4 changed files with 8 additions and 5 deletions

View File

@ -5,7 +5,9 @@
"""
"""Calculate Modular Exponential."""
def modular_exponential(base : int, power : int, mod : int):
def modular_exponential(base: int, power: int, mod: int):
"""
>>> modular_exponential(5, 0, 10)
1