Skip to content

Commit c7fddf1

Browse files
committed
remove console.log
1 parent bf7c57c commit c7fddf1

File tree

4 files changed

+60
-1
lines changed

4 files changed

+60
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ pcr-backup*
2525
./package.json
2626
./yarn.lock
2727
.tool-versions
28+
.Pipfile
29+
.Pipfile.lock

Pipfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
django = "*"
8+
9+
[dev-packages]
10+
11+
[requires]
12+
python_version = "3.11"

Pipfile.lock

Lines changed: 46 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/degree-plan/utils/parseUtils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ export const parseItems = (items: LineItem[]) => {
4949
else allText[currentCol][pos] = [items[i]?.str];
5050
}
5151

52-
console.log(allText);
5352
return allText;
5453
};
5554

0 commit comments

Comments
 (0)