mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-22 08:07:56 +01:00
Delete unused file
This commit is contained in:
parent
c58c1d89bd
commit
000f65a2ef
@ -1,18 +0,0 @@
|
||||
import importlib
|
||||
import pathlib
|
||||
|
||||
|
||||
file_path = pathlib.Path(importlib.util.find_spec("gradio").submodule_search_locations[0]) / "strings.py"
|
||||
|
||||
with open(file_path, 'r') as f:
|
||||
contents = f.read()
|
||||
|
||||
new_contents = contents.replace('threading.Thread(target=get_updated_messaging, args=(en,)).start()', '')
|
||||
if contents != new_contents:
|
||||
print('Patching gradio to prevent it from calling home every time it gets imported...')
|
||||
try:
|
||||
# This is dirty but harmless.
|
||||
with open(file_path, 'w') as f:
|
||||
f.write(new_contents)
|
||||
except:
|
||||
pass
|
Loading…
Reference in New Issue
Block a user