Skip to content

Commit

Permalink
[types] Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy C committed Jun 18, 2021
1 parent 48f2bab commit 9f657ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/osh_eval.py
Expand Up @@ -9,14 +9,14 @@
from asdl import runtime
from core import error
from core import oven # We should be able to translate this
unused1 = oven
from core import shell_native
from core.pyerror import log
from core import pyutil
from core.pyutil import stderr_line
from frontend import args
from frontend import flag_def # side effect: flags are defined!
_ = oven
_ = flag_def
unused2 = flag_def

import posix_ as posix

Expand Down
4 changes: 2 additions & 2 deletions core/shell_native.py
Expand Up @@ -22,7 +22,7 @@
from core import main_loop
from core import process
from core.pyerror import e_usage, log
_ = log
unused1 = log
from core import pyos
from core import pyutil
from core.pyutil import stderr_line
Expand All @@ -33,7 +33,7 @@

from frontend import args
from frontend import flag_def # side effect: flags are defined!
_ = flag_def
unused2 = flag_def
from frontend import flag_spec
from frontend import reader
from frontend import parse_lib
Expand Down

0 comments on commit 9f657ee

Please sign in to comment.