Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update default mock_NWBFile start time #2018

Merged
merged 3 commits into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pynwb/testing/mock/file.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Optional
from uuid import uuid4
from datetime import datetime
from dateutil.tz import tzlocal
from dateutil.tz import tzutc

from ...file import NWBFile, Subject
from .utils import name_generator
Expand All @@ -10,7 +10,7 @@
def mock_NWBFile(
session_description: str = 'session_description',
identifier: Optional[str] = None,
session_start_time: datetime = datetime(1970, 1, 1, tzinfo=tzlocal()),
session_start_time: datetime = datetime(1970, 1, 1, tzinfo=tzutc()),
**kwargs
):
return NWBFile(
Expand Down
Loading