We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71a9e0c commit 8926a58Copy full SHA for 8926a58
src/apify/_configuration.py
@@ -424,11 +424,11 @@ def disable_browser_sandbox_on_platform(self) -> Self:
424
425
@property
426
def canonical_input_key(self) -> str:
427
- return Path(self.input_key).stem
+ return str(Path(self.input_key).with_suffix('.json'))
428
429
430
def input_key_candidates(self) -> set[str]:
431
- return {self.input_key, self.canonical_input_key, Path(self.canonical_input_key).with_suffix('.json').name}
+ return {self.input_key, self.canonical_input_key, Path(self.canonical_input_key).stem}
432
433
@classmethod
434
def get_global_configuration(cls) -> Configuration:
0 commit comments