deleting unnecessary platform.py file

This commit is contained in:
Martin A. Brown 2016-02-23 09:44:12 -08:00
parent 51fabb65d7
commit f9453185df
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
#! /usr/bin/python
# -*- coding: utf8 -*-
from __future__ import absolute_import, division, print_function
from .typeguesser import knowndoctypes
from .utils import logger, which
class Platform(object):
def __init__(self, config):
for doctype in knowndoctypes:
for tool in doctype.tools:
loc = which(tool)
if loc is None:
logger.info("Missing tool %s, needed by %s (%s)",
tool, doctype.__name__, doctype.formatname)
else:
setattr(self, tool, loc)
#
# -- end of file