Skip to content

Commit

Permalink
update default mock_NWBFile start time (#2018)
Browse files Browse the repository at this point in the history
* update default mock_NWBFile start time

* Update src/pynwb/testing/mock/file.py

Co-authored-by: Ryan Ly <[email protected]>

---------

Co-authored-by: Ben Dichter <[email protected]>
Co-authored-by: Ryan Ly <[email protected]>
  • Loading branch information
3 people authored Jan 29, 2025
1 parent c0ba7e1 commit 716e3ce
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 716e3ce

Please sign in to comment.