diff options
Diffstat (limited to 'docs/examples/browse.py')
-rwxr-xr-x | docs/examples/browse.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/examples/browse.py b/docs/examples/browse.py index 2bbcc34..6d64cac 100755 --- a/docs/examples/browse.py +++ b/docs/examples/browse.py @@ -1,6 +1,10 @@ #!/usr/bin/env python -import real_browse +from __future__ import annotations + import os + +import real_browse + os.chdir('/usr/share/doc/python') real_browse.main() |