Commit 4ba942e 1 parent 3277492 commit 4ba942e Copy full SHA for 4ba942e
File tree 4 files changed +10
-12
lines changed
4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 1
1
Command-line interface
2
2
**********************
3
3
4
+ .. runblock :: console
5
+
6
+ $ tdc --help
7
+
4
8
.. include :: _api/transport_data.cli.rst
Original file line number Diff line number Diff line change 1
- """Command-line interface.
2
-
3
- .. runblock:: console
4
-
5
- $ tdc --help
6
-
7
- """
1
+ """Command-line interface."""
8
2
from importlib import import_module
9
3
10
4
import click
@@ -27,7 +21,7 @@ def main():
27
21
"jrc.cli" ,
28
22
"org.cli" ,
29
23
"proto.cli" ,
30
- "registry " ,
24
+ "store " ,
31
25
]
32
26
33
27
Original file line number Diff line number Diff line change 7
7
"""
8
8
import click
9
9
10
- from transport_data import registry
10
+ from transport_data import STORE
11
11
from transport_data .util .click import common_params
12
12
13
13
@@ -16,4 +16,4 @@ def main(version):
16
16
"""Information about the TDCI per se."""
17
17
from . import get_agencyscheme
18
18
19
- registry .write (get_agencyscheme (version = version ), force = True )
19
+ STORE .write (get_agencyscheme (version = version ), force = True )
Original file line number Diff line number Diff line change 2
2
import sdmx .model .v21
3
3
4
4
import transport_data
5
- import transport_data .registry
5
+ import transport_data .store
6
6
7
7
8
8
class TestBaseStore :
9
9
@pytest .fixture
10
- def s (self ) -> transport_data .registry .BaseStore :
10
+ def s (self ) -> transport_data .store .BaseStore :
11
11
return transport_data .STORE
12
12
13
13
@pytest .mark .parametrize (
You can’t perform that action at this time.
0 commit comments