Skip to content

Commit

Permalink
adds raw format and fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed May 4, 2024
1 parent 21c2aff commit 48aca90
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lodstorage/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.4"
__version__ = "0.10.5"
1 change: 1 addition & 0 deletions lodstorage/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class Format(Enum):
tsv = "tsv"
latex = "latex"
mediawiki = "mediawiki"
raw = "raw"
github = "github"

def __str__(self):
Expand Down
4 changes: 2 additions & 2 deletions lodstorage/querymain.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def main(argv=None, lang=None): # IGNORE:C0111
program_license = """%s
Created by %s on %s.
Copyright 2020-2023 Wolfgang Fahl. All rights reserved.
Copyright 2020-2024 Wolfgang Fahl. All rights reserved.
Licensed under the Apache License 2.0
http://www.apache.org/licenses/LICENSE-2.0
Expand Down Expand Up @@ -250,7 +250,7 @@ def main(argv=None, lang=None): # IGNORE:C0111
"-fp",
"--formatsPath",
default=ValueFormatter.formatsPath,
help="path to yaml file to configure formats to use for querie result documentation",
help="path to yaml file to configure formats to use for query result documentation",
)
parser.add_argument(
"-en",
Expand Down
2 changes: 1 addition & 1 deletion lodstorage/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ class Version(object):
name = "pylodstorage"
version = lodstorage.__version__
date = "2020-09-10"
updated = "2024-05-03"
updated = "2024-05-04"
description = "python List of Dict (Table) Storage library"

0 comments on commit 48aca90

Please sign in to comment.