Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.

Commit 8a220cd

Browse files
committed
Verify Boilerplate fix
1 parent 9fa71c2 commit 8a220cd

18 files changed

+57
-19
lines changed

config/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/config_exception.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/dateutil.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2017 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/dateutil_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/exec_provider.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2018 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/exec_provider_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2018 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/incluster_config.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/incluster_config_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/kube_config.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2018 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

config/kube_config_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2018 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

run_tox.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env python
22

33
# Copyright 2017 The Kubernetes Authors.
44
#
@@ -11,7 +11,7 @@
1111
# Unless required by applicable law or agreed to in writing, software
1212
# distributed under the License is distributed on an "AS IS" BASIS,
1313
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
# See the License for the specific language governing permissions and
14+
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

1717
set -o errexit

stream/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2017 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

stream/stream.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
# Licensed under the Apache License, Version 2.0 (the "License"); you may
2-
# not use this file except in compliance with the License. You may obtain
3-
# a copy of the License at
1+
#!/usr/bin/env python
2+
3+
# Copyright 2018 The Kubernetes Authors.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
48
#
5-
# http://www.apache.org/licenses/LICENSE-2.0
9+
# http://www.apache.org/licenses/LICENSE-2.0
610
#
711
# Unless required by applicable law or agreed to in writing, software
8-
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9-
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10-
# License for the specific language governing permissions and limitations
11-
# under the License.
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
1216

1317
from . import ws_client
1418

stream/ws_client.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
# Licensed under the Apache License, Version 2.0 (the "License"); you may
2-
# not use this file except in compliance with the License. You may obtain
3-
# a copy of the License at
1+
#!/usr/bin/env python
2+
3+
# Copyright 2018 The Kubernetes Authors.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
48
#
5-
# http://www.apache.org/licenses/LICENSE-2.0
9+
# http://www.apache.org/licenses/LICENSE-2.0
610
#
711
# Unless required by applicable law or agreed to in writing, software
8-
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9-
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10-
# License for the specific language governing permissions and limitations
11-
# under the License.
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
1216

1317
from kubernetes.client.rest import ApiException
1418

stream/ws_client_test.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Copyright 2017 The Kubernetes Authors.
1+
#!/usr/bin/env python
2+
3+
# Copyright 2018 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");
46
# you may not use this file except in compliance with the License.

watch/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

watch/watch.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

watch/watch_test.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
# Copyright 2016 The Kubernetes Authors.
24
#
35
# Licensed under the Apache License, Version 2.0 (the "License");

0 commit comments

Comments
 (0)