Skip to content

Commit

Permalink
Remove an extra info print
Browse files Browse the repository at this point in the history
  • Loading branch information
rantahar committed Nov 30, 2023
1 parent 928cabb commit 7f6dd16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions niimpy/reading/google_takeout.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,6 @@ def activity(zip_filename):
new_name = col.replace(" (ms)", "")
data[new_name] = pd.to_timedelta(data[col], unit="microseconds")
data.drop(col, axis=1, inplace=True)
data.info()


# Format column names
util.format_column_names(data)
Expand Down
1 change: 1 addition & 0 deletions tests/reading/test_read_google_takeout.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def test_read_google_takeout_location():
assert data['activity_type'][1] == "STILL"
assert data['activity_inference_confidence'][1] == 62


def test_read_google_takeout_activity():
"""test reading activity data form a Google takeout file."""
data = niimpy.reading.google_takeout.activity(config.GOOGLE_TAKEOUT_PATH)
Expand Down

0 comments on commit 7f6dd16

Please sign in to comment.