Skip to content

Commit

Permalink
Update copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
bicobus committed Jan 6, 2024
1 parent f9f33d7 commit 543d561
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion src/pycestorieseditor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>
from __future__ import annotations

import logging
Expand All @@ -15,5 +15,8 @@

logging.basicConfig(
level=logging.INFO, # DEBUG,
handlers=[
logging.FileHandler(filename=os.path.join(os.getcwd(), "pce.log"), mode="w")
],
)
logger = logging.getLogger(__name__)
2 changes: 1 addition & 1 deletion src/pycestorieseditor/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>

import argparse
import multiprocessing
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/ceevents.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>
#
# to xml:
# from xml.etree import ElementTree
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/ceevents_template/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>
from pycestorieseditor.ceevents_template.ceevents_modal import (
AgreeResultText,
AgreeText,
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/ceevents_template/ceevents_modal.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>
# Generated by xsdata-attr (https://xsdata-attrs.readthedocs.io/en/latest/),
# then modified to properly fit this project.
# xsdata-attr is distributed under the MIT/X11 license.
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>

import contextlib
import logging
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/graph.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>

import re
import textwrap
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/wxlaunch.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>
import logging
import os
from itertools import count
Expand Down
2 changes: 1 addition & 1 deletion src/pycestorieseditor/wxui.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
# Licensed under the EUPL v1.2
# © 2023 bicobus <[email protected]>
# © 2024 bicobus <[email protected]>
from __future__ import annotations

import os
Expand Down

0 comments on commit 543d561

Please sign in to comment.