MCPcopy Create free account
hub / github.com/pgadmin-org/pgadmin4 / pushd

Function pushd

web/pgadmin/utils/javascript/javascript_bundler.py:48–52  ·  view source on GitHub ↗
(new_dir)

Source from the content-addressed store, hash-verified

46
47@contextmanager
48def pushd(new_dir):
49 previous_dir = os.getcwd()
50 os.chdir(new_dir)
51 yield
52 os.chdir(previous_dir)
53
54
55def webdir_path():

Callers 1

try_building_jsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected