
Instead of creating a for-loop where we go through each argument, to check if current argument is -m and next argument is pip, we instead do simple regex matching where we look for ` -m pip ` somewhere in the command which is to be executed.
Instead of creating a for-loop where we go through each argument, to check if current argument is -m and next argument is pip, we instead do simple regex matching where we look for ` -m pip ` somewhere in the command which is to be executed.