Skip to content

Commit a588231

Browse files
committed
Fix: illegal parameter
1 parent ae46cd4 commit a588231

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ dependencies:
1919
#
2020
# Extra
2121
- jupyterlab
22-
- seaborn
2322
#
2423
# Test
2524
- pytest

kaleidoscope/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def run(self, args: Namespace): # noqa: D102
7676

7777
# open the source file
7878
get_logger().debug(f"opening source dataset: {args.target_file}")
79-
source = reader.read(args.target_file, depth_level=args.depth_level)
79+
source = reader.read(args.target_file)
8080

8181
# create the processing graph
8282
get_logger().info("starting creating processing graph")

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ dependencies = [
4747
[project.optional-dependencies]
4848
extra = [
4949
"jupyterlab",
50-
"seaborn",
5150
]
5251
test = [
5352
"pytest",

0 commit comments

Comments
 (0)