Skip to content

Commit

Permalink
Merge branch 'develop' into feature/expand-unit-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lukavdplas committed Jun 26, 2024
2 parents 95ecfac + 8de759d commit 88272f7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ This module was originally created for [I-analyzer](https://github.com/UUDigital

The basic usage is that you will use the utilities in this package to create a "reader" class. You specify what your data looks like, and then call the `documents()` method of the reader to get an iterator of documents - where each document is a flat dictionary of key/value pairs.

**State of development:** this module is currently under development and lacks proper unit tests and documentation.

## Prerequisites

Requires Python 3.8 or later.
Expand Down
2 changes: 1 addition & 1 deletion ianalyzer_readers/readers/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def source2dicts(self, source: Source) -> Iterable[Document]:
if isinstance(source, str):
filename = source
metadata = {}
if isinstance(source, bytes):
elif isinstance(source, bytes):
raise NotImplementedError()
else:
filename, metadata = source
Expand Down

0 comments on commit 88272f7

Please sign in to comment.