Skip to content

Commit bd50da7

Browse files
committed
Fix #181, removing "loading failed" line
1 parent 314fccb commit bd50da7

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

python/code/wypp/i18n.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,6 @@ def tr(key: str, **kws) -> str:
155155
'all successful': 'alle erfolgreich',
156156
'and stop of execution': 'und Abbruch der Ausführung',
157157

158-
'NOTE: running the code failed, some definitions might not be available in the interactive window!':
159-
'ACHTUNG: Das Ausführen des Codes ist fehlgeschlagen; einige Definitionen sind möglicherweise im interaktiven Fenster nicht verfügbar!',
160158
'=== WELCOME to ': '=== WILLKOMMEN bei '
161159
}
162160

python/code/wypp/interactive.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ def enterInteractive(userDefs: dict, checkTypes: bool, loadingFailed: bool):
4141
for k, v in userDefs.items():
4242
globals()[k] = v
4343
print()
44-
if loadingFailed:
45-
print(i18n.tr('NOTE: running the code failed, some definitions might not be available in the interactive window!'))
46-
print()
4744
if checkTypes:
4845
consoleClass = TypecheckedInteractiveConsole
4946
else:

0 commit comments

Comments
 (0)