-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
12 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|