| ... | @@ -85,6 +85,7 @@ The module provides 2 sample example code in 2 coding languages (CPP & Python) | 
... | @@ -85,6 +85,7 @@ The module provides 2 sample example code in 2 coding languages (CPP & Python) | 
| 
 | 
            -   For Tennis `pycodestyle tennis.py`
 | 
 | 
            -   For Tennis `pycodestyle tennis.py`
 | 
| 
 | 
            -   For yhatzee-game `pycodestyle yahtzee.py`
 | 
 | 
            -   For yhatzee-game `pycodestyle yahtzee.py`
 | 
| 
 | 
        -   After running the command you will get a big list of errors in the coding style.
 | 
 | 
        -   After running the command you will get a big list of errors in the coding style.
 | 
 | 
 | 
 | 
            
 | 
| 
 | 
        
 | 
 | 
        
 | 
| 
 | 
        </details>
 | 
 | 
        </details>
 | 
| 
 | 
    -   For CPP
 | 
 | 
    -   For CPP
 | 
| ... | @@ -101,6 +102,7 @@ The module provides 2 sample example code in 2 coding languages (CPP & Python) | 
... | @@ -101,6 +102,7 @@ The module provides 2 sample example code in 2 coding languages (CPP & Python) | 
| 
 | 
            make codestyle
 | 
 | 
            make codestyle
 | 
| 
 | 
            ```
 | 
 | 
            ```
 | 
| 
 | 
        -   After running the command you will get a big list of errors in the coding style.
 | 
 | 
        -   After running the command you will get a big list of errors in the coding style.
 | 
 | 
 | 
 | 
            
 | 
| 
 | 
 | 
 | 
 | 
| 
 | 
        </details>
 | 
 | 
        </details>
 | 
| 
 | 
 | 
 | 
 | 
| ... | @@ -109,25 +111,28 @@ The module provides 2 sample example code in 2 coding languages (CPP & Python) | 
... | @@ -109,25 +111,28 @@ The module provides 2 sample example code in 2 coding languages (CPP & Python) | 
| 
 | 
        <details>
 | 
 | 
        <details>
 | 
| 
 | 
        <summary>  Click to see your steps! </summary>
 | 
 | 
        <summary>  Click to see your steps! </summary>
 | 
| 
 | 
 | 
 | 
 | 
| 
 | 
        -   Run command `pytest`
 | 
 | 
        -   Lets try to solve first 4 errors thrown by the codestyle check
 | 
| 
 | 
        -   You will see your refactored code get tested. If anything fails the test will report the failure.
 | 
 | 
            
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
        -   There seems to be errors due to spaces in the code, Lets fix these errors
 | 
 | 
 | 
 | 
            
 | 
 | 
 | 
 | 
        
 | 
 | 
 | 
 | 
        -   After fixing the errors the codestyle does not throw the errors anymore
 | 
 | 
 | 
 | 
        -   Yay! the code has been refactored, Now test it so that it clears all the tests.
 | 
| 
 | 
 | 
 | 
 | 
| 
 | 
        </details>
 | 
 | 
        </details>
 | 
| 
 | 
    -   For CPP Example
 | 
 | 
    -   For CPP Example
 | 
| 
 | 
        <details>
 | 
 | 
        <details>
 | 
| 
 | 
        <summary>  Click to see your steps! </summary>
 | 
 | 
        <summary>  Click to see your steps! </summary>
 | 
| 
 | 
        
 | 
 | 
        
 | 
| 
 | 
        -   For Tennis example, run commands
 | 
 | 
        -   Lets try to solve first 4 errors thrown by the codestyle check
 | 
| 
 | 
            ```sh
 | 
 | 
            
 | 
| 
 | 
            make
 | 
 | 
 | 
| 
 | 
            ./tennis1_tests
 | 
 | 
        -   There seems to be errors, due brackets missing in `if` condition, Lets fix these errors
 | 
| 
 | 
            ```
 | 
 | 
            
 | 
| 
 | 
        -   For yhatzee-game, run commands
 | 
 | 
        
 | 
| 
 | 
            ```sh
 | 
 | 
        -   After fixing the errors the codestyle does not throw the errors anymore
 | 
| 
 | 
            make
 | 
 | 
        -   Yay! the code has been refactored, Now test it so that it clears all the tests.
 | 
| 
 | 
            ./yahtzee_tests
 | 
 | 
 | 
| 
 | 
            ```
 | 
 | 
 | 
| 
 | 
        -   You will see your refactored code get tested. If anything fails the test will report the failure.
 | 
 | 
 | 
| 
 | 
        
 | 
 | 
        
 | 
| 
 | 
        </details>  
 | 
 | 
        </details>  
 | 
| 
 | 
 | 
 | 
 | 
| ... |  | ... |  |