This is mostly a program design question.
I have multiple identical instrument housings each of which contains four identical instruments that I can communicate with remotely. I want to make an instrument housing class that contains: methods to communicate with each housing, methods to do housing-specific operations, and the housing attributes (addresses) necessary to use those methods with them.
I additionally would like to make subclasses for the instruments themselves. These subclasses would have methods to do instrument-specific operations that call the superclass' methods and attributes to communicate through the housing.
The problem with this design is that each housing would ultimately have five instances: one for its operations and one for each of its four instruments.
Is it possible to create an instance of the housing class and then have subclasses inherit from the housing instance? Or am I thinking about this design in the wrong way (I'm relatively new to python)?