From 291c9fbf4f41f1e9ba19dee13cfcce48e4d191ec Mon Sep 17 00:00:00 2001 From: RamonColmenares Date: Sat, 28 Dec 2024 22:32:57 -0500 Subject: [PATCH] change solution file name to binary_to_decimal --- .vscode/settings.json | 4 ++-- collaboration/communication.md | 11 ++++++----- .../{solution.py => binary_to_decimal.py} | 0 .../tests/challenge_15/test_binary_to_decimal.py | 2 +- 4 files changed, 9 insertions(+), 8 deletions(-) rename solutions/challenge_15/{solution.py => binary_to_decimal.py} (100%) diff --git a/.vscode/settings.json b/.vscode/settings.json index bbda5188d..252022b48 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -119,8 +119,8 @@ "editor.defaultFormatter": "charliermarsh.ruff", "editor.formatOnSave": true, "editor.codeActionsOnSave": { - "source.fixAll.ruff": true, - "source.organizeImports.ruff": true + "source.fixAll.ruff": "explicit", + "source.organizeImports.ruff": "explicit" } } } diff --git a/collaboration/communication.md b/collaboration/communication.md index 484652e0f..a808b4642 100644 --- a/collaboration/communication.md +++ b/collaboration/communication.md @@ -13,8 +13,9 @@ ______________________________________________________________________ ## Communication Schedule -| Day | How | The topic of discussion | | --- | :-: | ----------------------- | -| | | | +| Day | How | The topic of discussion | +|------|:----:|-------------------------| +| | | | ## Communication Channels @@ -31,9 +32,9 @@ ______________________________________________________________________ ### Availability for calling/messaging -| Day | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday | Sunday | | ------- | :----: | :-----: | :-------: | :------: | :----: | :------: | :----: | -| _name_ | | | | | | | | +| Day | Monday | Tuesday | Wednesday | Thursday | Friday | Saturday | Sunday| +|----------|:------:|:-------:|:---------:|:--------:|:------:|:--------:|:----:| +|Ramon| | | | | | | | ### How many hours everyone has per day diff --git a/solutions/challenge_15/solution.py b/solutions/challenge_15/binary_to_decimal.py similarity index 100% rename from solutions/challenge_15/solution.py rename to solutions/challenge_15/binary_to_decimal.py diff --git a/solutions/tests/challenge_15/test_binary_to_decimal.py b/solutions/tests/challenge_15/test_binary_to_decimal.py index c1bf5a382..996b644d0 100644 --- a/solutions/tests/challenge_15/test_binary_to_decimal.py +++ b/solutions/tests/challenge_15/test_binary_to_decimal.py @@ -14,7 +14,7 @@ import unittest -from solutions.challenge_15.solution import binary_to_decimal +from solutions.challenge_15.binary_to_decimal import binary_to_decimal class TestBinaryToDecimal(unittest.TestCase):