File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
from rdflib .namespace import XSD
5
5
6
6
7
- def main ():
7
+ def main () -> None :
8
8
# Process the command line arguments to get the output path
9
9
if len (sys .argv ) == 1 :
10
10
print (f"Insufficient arguments. Usage is { sys .argv [0 ]} output_path" )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ license_files =
17
17
[options]
18
18
include_package_data = true
19
19
install_requires =
20
- rdflib >= 6.0.2
20
+ rdflib >= 6.2.0
21
21
packages = case_example_mapping
22
22
python_requires = >=3.7
23
23
Original file line number Diff line number Diff line change 5
5
6
6
7
7
class CASEOutputTests (unittest .TestCase ):
8
- def test_graphs_exist (self ):
8
+ def test_graphs_exist (self ) -> None :
9
9
"""
10
10
Identifies all CASE graph files within the ./output directory and ensures there
11
11
are at least two.
@@ -19,7 +19,7 @@ def test_graphs_exist(self):
19
19
# Ensure there were two graph files as expected
20
20
self .assertEqual (2 , len (files ))
21
21
22
- def test_triples_exist (self ):
22
+ def test_triples_exist (self ) -> None :
23
23
"""
24
24
Identifies all CASE graph files within the ./output directory and ensures they
25
25
contain at least one triple.
You can’t perform that action at this time.
0 commit comments