From 9dd6c993399cf374fe6e6314cb9d91923308dcb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Sat, 20 Mar 2021 16:59:32 +0100 Subject: [PATCH] chore: remove useless header comment --- kosmorrolib/__init__.py | 16 ---------------- kosmorrolib/core.py | 16 ---------------- kosmorrolib/data.py | 16 ---------------- kosmorrolib/dateutil.py | 16 ---------------- kosmorrolib/enum.py | 16 ---------------- kosmorrolib/ephemerides.py | 16 ---------------- kosmorrolib/events.py | 16 ---------------- kosmorrolib/exceptions.py | 16 ---------------- 8 files changed, 128 deletions(-) diff --git a/kosmorrolib/__init__.py b/kosmorrolib/__init__.py index 0522039..ba66e86 100644 --- a/kosmorrolib/__init__.py +++ b/kosmorrolib/__init__.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - import __version__ from .ephemerides import get_ephemerides diff --git a/kosmorrolib/core.py b/kosmorrolib/core.py index fa0bf7c..5bb41ac 100644 --- a/kosmorrolib/core.py +++ b/kosmorrolib/core.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - import os import re from shutil import rmtree diff --git a/kosmorrolib/data.py b/kosmorrolib/data.py index 933f7a9..93a372e 100644 --- a/kosmorrolib/data.py +++ b/kosmorrolib/data.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - from abc import ABC, abstractmethod from typing import Union from datetime import datetime diff --git a/kosmorrolib/dateutil.py b/kosmorrolib/dateutil.py index 84dccd5..b5a8fda 100644 --- a/kosmorrolib/dateutil.py +++ b/kosmorrolib/dateutil.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - from datetime import datetime, timezone, timedelta diff --git a/kosmorrolib/enum.py b/kosmorrolib/enum.py index 699103a..03676ec 100644 --- a/kosmorrolib/enum.py +++ b/kosmorrolib/enum.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - from enum import Enum, auto diff --git a/kosmorrolib/ephemerides.py b/kosmorrolib/ephemerides.py index 7ef3867..c81f561 100644 --- a/kosmorrolib/ephemerides.py +++ b/kosmorrolib/ephemerides.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - import datetime from typing import Union diff --git a/kosmorrolib/events.py b/kosmorrolib/events.py index 1298399..bfed981 100644 --- a/kosmorrolib/events.py +++ b/kosmorrolib/events.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - from datetime import date as date_type from skyfield.errors import EphemerisRangeError diff --git a/kosmorrolib/exceptions.py b/kosmorrolib/exceptions.py index 6a69046..faddc7a 100644 --- a/kosmorrolib/exceptions.py +++ b/kosmorrolib/exceptions.py @@ -1,21 +1,5 @@ #!/usr/bin/env python3 -# Kosmorro - Compute The Next Ephemerides -# Copyright (C) 2019 Jérôme Deuchnord -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . - from datetime import date