18 lines
361 B
Python
18 lines
361 B
Python
"""
|
|
A collection of Printers.
|
|
|
|
It has methods to discover printers, and provides an interface for the methods expected from printers.
|
|
"""
|
|
|
|
from printer import Printer
|
|
|
|
class Printers():
|
|
"""
|
|
A collection of Printers
|
|
"""
|
|
def __init__(self, name, age):
|
|
self.name = name
|
|
self.age = age
|
|
|
|
def _discover_printers(self):
|
|
pass |