I was trying to write a program with just one class and it was working fine. Then, I seperated that class into two different files and made the objects and called the methods in a third (client.py IO.py main.py). Now, when I use the command: <br>
<br>python client.py IO.py main.py <br><br>Nothing prints. I think its only interpreting client.py (the objects are declared in main.py)<br><br>How can I fix this? <br>