Skip to content

Commit

Permalink
MAINT: Removed repeated typo
Browse files Browse the repository at this point in the history
  • Loading branch information
richafrank committed Jul 21, 2020
1 parent ae9b8bc commit 0e0b9ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/source/whatsnew/1.0.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ Data Bundles (:issue:`1173` and :issue:`1178`)
``````````````````````````````````````````````

1.0.0 introduces data bundles. Data bundles are groups of data that should be
preloaded and used to run backtests later. This allows users to not need to to
specify which tickers they are interested in each time they run an
preloaded and used to run backtests later. This allows users to not need to
specify which tickers they are interested in each time they run an
algorithm. This also allows us to cache the data between runs.

By default, the ``quantopian-quandl`` bundle will be used which pulls data from
Expand Down
2 changes: 1 addition & 1 deletion zipline/assets/assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def build_grouped_ownership_map(table,
value_from_row,
group_key):
"""
Builds a dict mapping group keys to maps of keys to to lists of
Builds a dict mapping group keys to maps of keys to lists of
OwnershipPeriods, from a db table.
"""
grouped_rows = groupby(
Expand Down
6 changes: 3 additions & 3 deletions zipline/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ class MultipleSymbolsFound(ZiplineError):
"""
msg = """
Multiple symbols with the name '{symbol}' found. Use the
as_of_date' argument to to specify when the date symbol-lookup
as_of_date' argument to specify when the date symbol-lookup
should be valid.
Possible options: {options}
Expand All @@ -322,7 +322,7 @@ class MultipleSymbolsFoundForFuzzySymbol(MultipleSymbolsFound):
"""
msg = dedent("""\
Multiple symbols were found fuzzy matching the name '{symbol}'. Use
the as_of_date and/or country_code arguments to to specify the date
the as_of_date and/or country_code arguments to specify the date
and country for the symbol-lookup.
Possible options: {options}
Expand All @@ -336,7 +336,7 @@ class SameSymbolUsedAcrossCountries(MultipleSymbolsFound):
"""
msg = dedent("""\
The symbol '{symbol}' is used in more than one country. Use the
country_code argument to to specify the country.
country_code argument to specify the country.
Possible options by country: {options}
""")
Expand Down

0 comments on commit 0e0b9ec

Please sign in to comment.