(self)
| 9 | |
| 10 | class IpAttributable: |
| 11 | def __init__(self): |
| 12 | dbFile = os.path.join(path.library, "data", "ip2region.db") |
| 13 | self.searcher = Ip2Region(dbFile) |
| 14 | self.getAttributable() |
| 15 | |
| 16 | |
| 17 | def ipCollection(self): |
nothing calls this directly
no test coverage detected