1# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""Library for processing, verifying and applying Chrome OS update payloads."""
6
7# Just raise the interface classes to the root namespace.
8# pylint: disable=W0401
9from checker import CHECKS_TO_DISABLE
10from error import PayloadError
11from payload import Payload
12