Skip to content

Commit

Permalink
checking for cla
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrishtiKarkera committed Jun 24, 2024
1 parent 47624db commit 2ae3ff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion installer/common/file_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
logger = logging.getLogger(__name__)


def _file_reader_iter(path: str, block_size=2**20):
def _file_reader_iter(path: str, block_size=2 ** 20):
with open(path, "rb") as f:
block = f.read(block_size)
while len(block) > 0:
Expand Down
2 changes: 1 addition & 1 deletion scripts/wrappers/add_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def print_short(token, check):
print(f"microk8s join {default_ip}:{port}/{token}/{check}")
for ip in all_ips:
if ip != default_ip:
print(f"microk8s join {ip}:{port}/{token}/{check}")
print(f"microk8s join {ip}:{port}/{token}/{check}")


if __name__ == "__main__":
Expand Down

0 comments on commit 2ae3ff1

Please sign in to comment.