Skip to content

Commit

Permalink
add copyright to python files
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Robinson <merobi@gmail.com>
  • Loading branch information
merobi-hub committed May 20, 2022
1 parent 23a285c commit e9e241d
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions clients/python/examples/__init__.py
@@ -0,0 +1,2 @@
# Copyright 2018-2022 contributors to the Marquez project

2 changes: 2 additions & 0 deletions clients/python/examples/simple.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

from marquez_client import Clients
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/__init__.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/client.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

import json
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/clients.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

import os
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/constants.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

DEFAULT_TIMEOUT_MS = 10000
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/errors.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

class MarquezError(Exception):
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/models.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

from enum import Enum
Expand Down
2 changes: 2 additions & 0 deletions clients/python/marquez_client/utils.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

import json
Expand Down
2 changes: 2 additions & 0 deletions clients/python/setup.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

#!/usr/bin/env python
#
# SPDX-License-Identifier: Apache-2.0
Expand Down
2 changes: 2 additions & 0 deletions clients/python/tests/__init__.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0
#
# -*- coding: utf-8 -*-
2 changes: 2 additions & 0 deletions clients/python/tests/test_marquez_client.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

import mock
Expand Down
2 changes: 2 additions & 0 deletions clients/python/tests/test_marquez_clients.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

import os
Expand Down
2 changes: 2 additions & 0 deletions clients/python/tests/test_utils.py
@@ -1,3 +1,5 @@
# Copyright 2018-2022 contributors to the Marquez project

# SPDX-License-Identifier: Apache-2.0

from unittest.mock import patch, MagicMock
Expand Down

0 comments on commit e9e241d

Please sign in to comment.