Skip to content

Commit f36d0af

Browse files
committed
chore: update Copyright in file headers
1 parent b367606 commit f36d0af

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+123
-45
lines changed

cytomine/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/cytomine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/cytomine_job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/_utilities/__init__.py

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1+
# -*- coding: utf-8 -*-
12

3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
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
8+
# *
9+
# * http://www.apache.org/licenses/LICENSE-2.0
10+
# *
11+
# * Unless required by applicable law or agreed to in writing, software
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.
216

317
from .parallel import generic_download, makedirs, is_false
418
from .dump import generic_image_dump, DumpError

cytomine/models/_utilities/dump.py

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
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
8+
# *
9+
# * http://www.apache.org/licenses/LICENSE-2.0
10+
# *
11+
# * Unless required by applicable law or agreed to in writing, software
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.
16+
117
import os
218
from shutil import copyfile
319

cytomine/models/_utilities/parallel.py

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
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
8+
# *
9+
# * http://www.apache.org/licenses/LICENSE-2.0
10+
# *
11+
# * Unless required by applicable law or agreed to in writing, software
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.
16+
117
import errno
218
import os
319

cytomine/models/_utilities/pattern_matching.py

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
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
8+
# *
9+
# * http://www.apache.org/licenses/LICENSE-2.0
10+
# *
11+
# * Unless required by applicable law or agreed to in writing, software
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.
16+
117
import re
218
from copy import copy
319

cytomine/models/annotation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/collection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/ontology.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/property.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/social.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/software.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/storage.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/track.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/models/user.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/utilities/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

cytomine/utilities/descriptor_reader.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/add_annotation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/add_ontology.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/add_properties.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/add_tag.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/add_user.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/calibrate_image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2020. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/delete_annotations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/get_annotations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/get_images.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/get_included_annotations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/get_projects_paginator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/get_terms.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2020. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/upload_image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

examples/upload_software.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2020. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

tests/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

tests/test_annotation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

tests/test_image.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

tests/test_ontology.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
3+
# * Copyright (c) 2009-2024. Authors: see NOTICE file.
44
# *
55
# * Licensed under the Apache License, Version 2.0 (the "License");
66
# * you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)