Skip to content

Commit

Permalink
insert copyright to satisfy the pre-commit action
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwwarren committed Apr 18, 2024
1 parent d6286e6 commit fbbb4d7
Show file tree
Hide file tree
Showing 15 changed files with 72 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ repos:
rev: 1.0.0
hooks:
- id: copyright
exclude: (^samples/|^files/|.*\.yaml|Dockerfile.*)
exclude: (^samples/|^files/|.*\.yaml|Dockerfile.*|LICENSE|.*\.md|\.gitignore|.*\.toml|\.flake8)
- id: copyright-required
exclude: (^samples/|^files/|.*\.yaml|Dockerfile.*)
exclude: (^samples/|^files/|.*\.yaml|Dockerfile.*|LICENSE|.*\.md|\.gitignore|.*\.toml|\.flake8)
5 changes: 5 additions & 0 deletions src/dynamic_importer/api/client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import os
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/api/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations


Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/api/types.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations


Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/processors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import importlib
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/processors/dotenv.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import os
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/processors/json.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import json
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/processors/tf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import os
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/processors/tfvars.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

from re import sub
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/processors/yaml.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

from re import sub
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import os
Expand Down
5 changes: 5 additions & 0 deletions src/dynamic_importer/walker.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import os
Expand Down
5 changes: 5 additions & 0 deletions src/tests/fixtures/requests.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations


Expand Down
5 changes: 5 additions & 0 deletions src/tests/processors/test_yaml.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import pathlib
Expand Down
5 changes: 5 additions & 0 deletions src/tests/test_client.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-
#
# Copyright (c) 2024 CloudTruth, Inc.
# All Rights Reserved
#
from __future__ import annotations

import os
Expand Down

0 comments on commit fbbb4d7

Please sign in to comment.