Completed
Push — master ( e4fe44...6106cb )
by Eddie
01:23
created

zipline.data.FutureMinuteReader   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %
Metric Value
dl 0
loc 5
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 3 1
1
# Copyright 2015 Quantopian, Inc.
2
#
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
# you may not use this file except in compliance with the License.
5
# You may obtain a copy of the License at
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9
# Unless required by applicable law or agreed to in writing, software
10
# distributed under the License is distributed on an "AS IS" BASIS,
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
16
class FutureDailyReader(object):
17
    """
18
    Stubbed out. Currently unimplemented.
19
    """
20
    pass
21
22
23
class FutureMinuteReader(object):
24
25
    def __init__(self, rootdir, sid_path_func=None):
26
        self.rootdir = rootdir
27
        self.sid_path_func = sid_path_func
28