Skip to content

Commit

Permalink
0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mhowison committed Jun 23, 2024
1 parent 1ec407e commit 18a71f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ The csv file is expected to have two columns (variable name, description).

3-Clause BSD (see LICENSE)

## Tests

The `test/` subdirectory contains a script to generate a synthetic data set, an integration test for the codebooks package, and a benchmark script used to test performance optimizations. You can run these with:

cd test
python dataset.py
codebooks dataset.csv
python benchmark.py

## Authors

Mark Howison
Expand Down
2 changes: 1 addition & 1 deletion src/codebooks/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def set_html(self):
)]

if self.var.type == "Unique Key" or self.var.type == "Empty":
self.html.appned("<td colspan=7></td>")
self.html.append("<td colspan=7></td>")
elif self.var.type == "Constant":
self.html.append("""
<td colspan=6><strong>{}</strong></td>
Expand Down

0 comments on commit 18a71f9

Please sign in to comment.