10000 Update · frederikhoengaard/lazy-learn@8deaf2c · GitHub
[go: up one dir, main page]

Skip to content

Commit 8deaf2c

Browse files
Update
1 parent d5067d2 commit 8deaf2c

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "example_package_frederikhoengaard"
6+
name = "lazylearn"
77
version = "0.0.1"
88
authors = [
99
{ name="Frederik P. Høngaard", email="mail@frederikhoengaard.com" },

python/src/lazylearn/pipeline/__init__.py

Whitespace-only changes.

shell/check.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ export PIPENV_VERBOSITY=-1
55
set -e
66

77
echo "--- black ---"
8-
pipenv run black --line-length 88 --check python/src/main/
8+
pipenv run black --line-length 88 --check python/src/lazylearn/
99
pipenv run black --line-length 88 --check python/src/test/
1010
echo "--- isort ---"
11-
pipenv run isort python/src/main/ --multi-line 3 --profile black --check
11+
pipenv run isort python/src/lazylearn/ --multi-line 3 --profile black --check
1212
pipenv run isort python/src/test/ --multi-line 3 --profile black --check
1313
echo "--- flake8 ---"
14-
pipenv run flake8 python/src/main/
14+
pipenv run flake8 python/src/lazylearn/
1515
pipenv run flake8 python/src/test/
1616
echo "--- pytest ---"
1717
if [[ "$OSTYPE" == "msys" ]]; then

shell/tidy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export PIPENV_VERBOSITY=-1
66
set -e
77

88
echo "--- black ---"
9-
pipenv run black --line-length 88 python/src/main/
9+
pipenv run black --line-length 88 python/src/lazylearn/
1010
pipenv run black --line-length 88 python/src/test/
1111
echo "--- isort ---"
12-
pipenv run isort python/src/main/ --multi-line 3 --profile black
12+
pipenv run isort python/src/lazylearn/ --multi-line 3 --profile black
1313
pipenv run isort python/src/test/ --multi-line 3 --profile black

0 commit comments

Comments
 (0)
0