Resolve bashate and pep8 warnings

This update addresses existing bashate and pep8 warnings in
cgcs-patch, patch-alarm, and tsconfig. The bulk of these updates
are style and spacing changes, such as whitespace style conventions.

Story: 2003371
Task: 24433
Depends-On: I03beab02aee1f47d5e66570c74a2eadf75e52da0
Change-Id: I44b26d24788907bac0730a952d70ed4bafb87d90
Signed-off-by: Don Penney <don.penney@windriver.com>
This commit is contained in:
Don Penney 2018-08-08 19:36:58 -05:00 committed by Scott Little
parent 6fe8cbfe9e
commit 38a86ab5e4
1 changed files with 7 additions and 7 deletions

View File

@ -9,11 +9,11 @@ SPDX-License-Identifier: Apache-2.0
import setuptools import setuptools
setuptools.setup(name='tsconfig', setuptools.setup(
version='1.0.0', name='tsconfig',
description='tsconfig', version='1.0.0',
license='Apache-2.0', description='tsconfig',
packages=['tsconfig'], license='Apache-2.0',
entry_points={ packages=['tsconfig'],
} entry_points={}
) )