Skip to content

Commit 5ba834a

Browse files
committed
pre-commit fixes
Adds newlines to end of files where it was missing. Removes flake8 hook as there isn't any python code in this repo. Signed-off-by: James Slagle <[email protected]>
1 parent 454b7c8 commit 5ba834a

File tree

7 files changed

+4
-17
lines changed

7 files changed

+4
-17
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,6 @@ repos:
1414
- id: check-yaml
1515
files: .*\.(yaml|yml)$
1616
args: [--allow-multiple-documents]
17-
- repo: https://github.com/pycqa/flake8
18-
rev: 7.0.0
19-
hooks:
20-
- id: flake8
21-
additional_dependencies: [flake8-typing-imports==1.6.0]
22-
# List of ignored checks overrides the flake8 defaults.
23-
# Changes to the list, especially extensions should be
24-
# justified with relation to defaults.
25-
# E501 - line is too long, would require local ignore or obfuscating changes
26-
# W503 - line break before binary operator, ignored by default
27-
entry: flake8 --ignore=E501,W503
2817
- repo: https://github.com/openstack-dev/bashate
2918
rev: 2.1.1
3019
hooks:

OWNERS_ALIASES

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,3 @@ aliases:
2828
- hjensas
2929
- juliakreger
3030
- steveb
31-

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ run the following::
9090

9191
To see a description of all arguments and their defaults run::
9292

93-
./block-device-yaml --help
93+
./block-device-yaml --help

bootc/README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ To deploy EDPM baremetal with this image, customize the ``baremetalSetTemplate``
2727
baremetalSetTemplate:
2828
osContainerImageUrl: quay.io/<account>/edpm-bootc:latest-qcow2
2929
osImage: edpm-bootc.qcow2
30-

dib/host-ca/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Or in a ``diskimage-builder`` command yaml file::
1515
elements:
1616
- host-ca
1717
environment:
18-
DIB_HOST_CA: "2015-RH-IT-Root-CA.pem 2022-IT-Root-CA.pem"
18+
DIB_HOST_CA: "2015-RH-IT-Root-CA.pem 2022-IT-Root-CA.pem"

dib/host-ca/extra-data.d/10-host-ca

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ if [ -n "$DIB_HOST_CA" ]; then
1111
for ca_file in $DIB_HOST_CA; do
1212
sudo cp /etc/pki/ca-trust/source/anchors/$ca_file $TMP_MOUNT_PATH/etc/pki/ca-trust/source/anchors/
1313
done
14-
fi
14+
fi

dib/host-ca/pre-install.d/00-host-ca

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ fi
99

1010
if [ -n "$DIB_HOST_CA" ]; then
1111
sudo update-ca-trust
12-
fi
12+
fi

0 commit comments

Comments
 (0)