Skip to content

Commit

Permalink
Update copyright notices
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jones-dev committed Jan 19, 2022
1 parent 004922f commit 92283fa
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
MIT License

Copyright 2021 DeepL GmbH (https://www.deepl.com)
Copyright 2022 DeepL SE (https://www.deepl.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions deepl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 1,10 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

from .version import VERSION as __version__ # noqa

__author__ = "DeepL GmbH <[email protected]>"
__author__ = "DeepL SE <[email protected]>"

from .exceptions import ( # noqa
AuthorizationException,
Expand Down
2 changes: 1 addition & 1 deletion deepl/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion deepl/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion deepl/http_client.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion deepl/translator.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion deepl/util.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.
import itertools
Expand Down
2 changes: 1 addition & 1 deletion deepl/version.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ line-length = 79
name = "deepl"
version = "1.3.1"
description = "Python library for the DeepL API."
authors = ["DeepL GmbH <[email protected]>"]
authors = ["DeepL SE <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/DeepLcom/deepl-python"
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_glossary.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_translate_document.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_translate_text.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down
2 changes: 1 addition & 1 deletion tests/test_util.py
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Copyright 2021 DeepL GmbH (https://www.deepl.com)
# Copyright 2022 DeepL SE (https://www.deepl.com)
# Use of this source code is governed by an MIT
# license that can be found in the LICENSE file.

Expand Down

0 comments on commit 92283fa

Please sign in to comment.