Update copyright notices for 2023 (#1660)

* update copyright notice for 2023

* standardize whitespace after copyright notice
This commit is contained in:
Jonathan Wren 2023-01-07 13:39:07 -08:00 committed by GitHub
parent 9274ab16ed
commit 8da6029624
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
110 changed files with 122 additions and 111 deletions

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import contextlib

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import datetime

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import codecs

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import datetime

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
try:

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import sys

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import argparse

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import re

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
"""
@ -14,6 +14,7 @@ run.
Also, please note that all (non-builtin) imports should be scoped to each function to
avoid any possible overhead for these standalone commands.
"""
import argparse
import logging
import platform
@ -47,7 +48,7 @@ def preconfig_version(_):
output = f"""
{__title__} {__version__}
Copyright © 2012-2022 jrnl contributors
Copyright © 2012-2023 jrnl contributors
This is free software, and you are welcome to redistribute it under certain
conditions; for details, see: https://www.gnu.org/licenses/gpl-3.0.html

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import argparse

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging
from abc import ABC
from abc import abstractmethod

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from .BaseEncryption import BaseEncryption

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging
from jrnl.encryption.BaseEncryption import BaseEncryption

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import hashlib
import logging

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import base64
import logging

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging
from jrnl.encryption.BaseEncryption import BaseEncryption

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from enum import Enum
from importlib import import_module
from typing import TYPE_CHECKING

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import TYPE_CHECKING

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import contextlib

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging
import sys
from typing import TYPE_CHECKING

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import keyring
from jrnl.messages import Message

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import TYPE_CHECKING

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from enum import Enum

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from enum import Enum

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from jrnl.messages import Message

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import shlex

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import textwrap

View file

@ -1,5 +1,6 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import TYPE_CHECKING
from jrnl.config import make_yaml_valid_dict

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import os.path

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import Type

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from collections import Counter

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import sys

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import json

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import os

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import TYPE_CHECKING

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import errno

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import TYPE_CHECKING

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from typing import TYPE_CHECKING

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import os

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
from jrnl.messages import Message

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import datetime

View file

@ -1,4 +1,4 @@
# Copyright © 2012-2022 jrnl contributors
# Copyright © 2012-2023 jrnl contributors
# License: https://www.gnu.org/licenses/gpl-3.0.html
import logging