Skip to content

Commit 92283fa

Browse files
Update copyright notices
1 parent 004922f commit 92283fa

16 files changed

+17
-17
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright 2021 DeepL GmbH (https://www.deepl.com)
3+
Copyright 2022 DeepL SE (https://www.deepl.com)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

deepl/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

55
from .version import VERSION as __version__ # noqa
66

7-
__author__ = "DeepL GmbH <[email protected]>"
7+
__author__ = "DeepL SE <[email protected]>"
88

99
from .exceptions import ( # noqa
1010
AuthorizationException,

deepl/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

deepl/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

deepl/http_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

deepl/translator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

deepl/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44
import itertools

deepl/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ line-length = 79
55
name = "deepl"
66
version = "1.3.1"
77
description = "Python library for the DeepL API."
8-
authors = ["DeepL GmbH <[email protected]>"]
8+
authors = ["DeepL SE <[email protected]>"]
99
license = "MIT"
1010
readme = "README.md"
1111
repository = "https://github.com/DeepLcom/deepl-python"

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

tests/test_cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

tests/test_general.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

tests/test_glossary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

tests/test_translate_document.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

tests/test_translate_text.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

tests/test_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
1+
# Copyright 2022 DeepL SE (https://www.deepl.com)
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

0 commit comments

Comments
 (0)