Skip to content

Commit

Permalink
Formatting (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekateluv authored Jan 12, 2023
1 parent 629cd11 commit a12c1e7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
buildDebArchAll defaultDebianRelease: 'bullseye'
buildDebArchAll defaultDebianRelease: 'bullseye',
defaultRunPythonChecks: true
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
wb-diag-collect (1.5.1) stable; urgency=medium

* Code formatting

-- Ekaterina Volkova <ekaterina.volkova@wirenboard.ru> Thu, 12 Jan 2023 12:33:48 +0300

wb-diag-collect (1.5.0) stable; urgency=medium

* add dmesg from previous boot (if available)
Expand Down
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@

from setuptools import setup

setup(name='wb-diag-collect',
version='1.4.0',
description='Diagnostic collector',
author='Sokolov Semen',
author_email='s.sokolov@wirenboard.ru',
packages=['wb.diag']
)
setup(
name="wb-diag-collect",
version="1.4.0",
description="Diagnostic collector",
author="Sokolov Semen",
author_email="s.sokolov@wirenboard.ru",
packages=["wb.diag"],
)
2 changes: 2 additions & 0 deletions wb-diag-collect
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env python3

import sys

from wb.diag.diag_collect import main

sys.exit(main())

0 comments on commit a12c1e7

Please sign in to comment.