Skip to content

Commit 6d7465d

Browse files
authored
Update README.md
1 parent 55ff3be commit 6d7465d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ Use ``pytest {filename}`` to run all inline tests in a Python file.
7777

7878
```python {.line-numbers}
7979
def FileHeader(self):
80-
dt = self.date_time
81-
dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
82-
itest().assume(2 < 4).given(dt, (1980, 1, 25, 17, 13, 14)).check_eq(dosdate, 57)
80+
dt = self.date_time
81+
dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
82+
itest().assume(2 < 4).given(dt, (1980, 1, 25, 17, 13, 14)).check_eq(dosdate, 57)
8383
```
8484

8585

0 commit comments

Comments
 (0)