Compare commits

..

No commits in common. "6867eb0e65cd9bf5d3e9c786ee3c097f278e7cde" and "37175b722753bbd60a1a982eadf8281aa3b17f33" have entirely different histories.

8 changed files with 17 additions and 24 deletions

View File

@ -2,14 +2,10 @@
# activate venv
source /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/cpl-env/bin/activate
# CLI
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/
cpl build
# CPL
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/cpl
cpl build
# CLI
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/cpl_cli
cpl build
# CPL Query
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/cpl_query
cpl build

View File

@ -2,14 +2,10 @@
# activate venv
source /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/cpl-env/bin/activate
# CLI
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/
cpl publish
# CPL
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/cpl
cpl publish
# CLI
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/cpl_cli
cpl publish
# CPL Query
cd /home/sven/Nextcloud_Sven/Schreibtisch/git_sh-edraft_de/sh_cpl/src/cpl_query
cpl
cpl publish

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
sh_cpl_query sh-edraft Common Python library Query
cpl_query sh-edraft Common Python library Query
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
sh_cpl_query sh-edraft Common Python library Query
cpl_query sh-edraft Common Python library Query
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
sh_cpl_query sh-edraft Common Python library Query
cpl_query sh-edraft Common Python library Query
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries

View File

@ -1,6 +1,6 @@
{
"ProjectSettings": {
"Name": "sh_cpl_query",
"Name": "cpl_query",
"Version": {
"Major": "2021",
"Minor": "10",

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
sh_cpl_query sh-edraft Common Python library Query
cpl_query sh-edraft Common Python library Query
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries

View File

@ -3,7 +3,7 @@ import unittest
from random import randint
from cpl.utils import String
from cpl_query.exceptions import InvalidTypeException, ArgumentNoneException
from cpl_query.exceptions import InvalidTypeException, WrongTypeException, ArgumentNoneException
from cpl_query.extension.list import List
from cpl_query.tests.models import User, Address
@ -160,7 +160,8 @@ class QueryTest(unittest.TestCase):
def test_for_each(self):
users = []
self._tests.for_each(lambda user: (
self._tests.for_each(
lambda user: (
users.append(user)
)
)