Skip to content

Commit

Permalink
Coming right along
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincrom committed Apr 4, 2021
1 parent 3160f7d commit 62aefae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion baseball/baseball.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def strip_suffixes(input_str):
while initials_match:
new_initials = initials_match[0].replace('.', '')
input_str = sub(initials_match[0], new_initials, input_str, 1)
initials_match = findall(r'([A-Z]\.[A-Z]\.?)', input_str)
initials_match = findall(r'([A-Z]\.[A-Z]\.? )', input_str)

return input_str

Expand Down
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='4.7',
version='4.8',
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

0 comments on commit 62aefae

Please sign in to comment.