From b7bb6ca6b740582efc0075af08f36cea85d022a3 Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Wed, 20 Jul 2016 18:19:11 -0400 Subject: [PATCH] MAINT: remove redundant branch --- zipline/assets/assets.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zipline/assets/assets.py b/zipline/assets/assets.py index d735f416..4796ac8d 100644 --- a/zipline/assets/assets.py +++ b/zipline/assets/assets.py @@ -578,10 +578,6 @@ class AssetFinder(object): raise SymbolNotFound(symbol=symbol) if not as_of_date: - if not owners: - # no equity held the fuzzy symbol ever - raise SymbolNotFound(symbol=symbol) - if len(owners) == 1: # only one valid match return self.retrieve_asset(owners[0].sid)