Skip to content

Commit 280a12b

Browse files
committed
Fix unintended gitignore
1 parent 1e08920 commit 280a12b

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ dist/
1414
downloads/
1515
eggs/
1616
.eggs/
17-
lib/
18-
lib64/
1917
parts/
2018
sdist/
2119
var/

source-code/pyinstaller/src/lib/__init__.py

Whitespace-only changes.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import pandas as pd
2+
3+
4+
def sum_columns(input_file):
5+
df = pd.read_csv(input_file)
6+
print(df.sum())
7+
8+
def prod_columns(input_file):
9+
df = pd.read_csv(input_file)
10+
print(df.prod())

0 commit comments

Comments
 (0)