Skip to content

Commit f59de6e

Browse files
Default value for "Fetch namespace prefixes from prefix.cc" is now False
1 parent 1ff899e commit f59de6e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88

99
### Fixed
1010

11-
- Fixed error when "Properties to ignore" field is empty (or contains empty lines)
11+
- Fixed error when "Properties to ignore" field is empty (or contains empty lines)
12+
13+
### Changed
14+
15+
- Default value for "Fetch namespace prefixes from prefix.cc" is now False
1216

1317
## [3.0.0] 2025-03-05
1418

cmem_plugin_shapes/plugin_shapes.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ def str2bool(value: str) -> bool:
122122
description="Attempt to fetch namespace prefixes from prefix.cc instead of from the "
123123
"local database. If this fails, fall back on local database. Prefixes defined in the "
124124
"Corporate Memory project will override prefixes defined in the external database.",
125-
default_value=False,
126125
advanced=True,
127126
),
128127
PluginParameter(
@@ -151,7 +150,7 @@ def __init__( # noqa: PLR0913
151150
label: str = "",
152151
existing_graph: str = "stop",
153152
import_shapes: bool = False,
154-
prefix_cc: bool = True,
153+
prefix_cc: bool = False,
155154
ignore_properties: str = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type",
156155
plugin_provenance: bool = False,
157156
) -> None:

0 commit comments

Comments
 (0)