Skip to content

Commit f18b63f

Browse files
committed
Lock and make port a number
1 parent 7b067e4 commit f18b63f

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

poetry.lock

Lines changed: 26 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "sparql-file"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A simple SPARQL 1.1 endpoint based on a file."
55
authors = [
66
{name = "Natanael Arndt",email = "[email protected]"}

sparql_file/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
def cli(
1111
graph_file: str,
1212
host: str = "0.0.0.0",
13-
port: str = "8000",
13+
port: int = 8000,
1414
example_query: str = DEFAULT_EXAMPLE_QUERY,
1515
graph_format: str | None = None,
1616
):

0 commit comments

Comments
 (0)