Skip to content

Commit

Permalink
Delay feature
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincrom committed May 26, 2024
1 parent e45de59 commit 4719208
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='baseball',
version='16.67',
version='16.68',
description='Library to download, anaylyze, and visualize events in Major League Baseball games.',
url='https://github.com/benjamincrom/baseball',
author='Benjamin B. Crom',
Expand Down
4 changes: 2 additions & 2 deletions wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ def my_hash(input):

class MyLmdb(Lmdb):
def _pre_key(self, value):
return value.encode("utf-8")
return str(value).encode("utf-8")
def _post_key(self, value):
return value.decode("utf-8")
def _pre_value(self, value):
return value.encode("utf-8")
return str(value).encode("utf-8")
def _post_value(self, value):
return value.decode("utf-8")

Expand Down

0 comments on commit 4719208

Please sign in to comment.