Coverage for cclib/progress/__init__.py : 75%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- coding: utf-8 -*-
2#
3# Copyright (c) 2017, the cclib development team
4#
5# This file is part of cclib (http://cclib.github.io) and is distributed under
6# the terms of the BSD 3-Clause License.
8import sys
10if 'PyQt4' in list(sys.modules.keys()):
11 from cclib.progress.qt4progress import Qt4Progress
13from cclib.progress.textprogress import TextProgress