Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Mar 5, 2024
1 parent b402c84 commit ddf6429
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/python/pyflyby/_autoimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,6 @@ def _find_loads_without_stores_in_code(co, loads_without_stores):
stores.add(fullname)
continue
if op in [LOAD_ATTR, LOAD_METHOD]:
print('------')
if sys.version_info >= (3,12):
# from the docs:
#
Expand Down Expand Up @@ -1310,7 +1309,6 @@ def _find_loads_without_stores_in_code(co, loads_without_stores):
# {LOAD_GLOBAL|LOAD_NAME} {LOAD_ATTR}* so far;
# possibly more LOAD_ATTR/STORE_ATTR will follow
pending.append(co.co_names[oparg])
print('------')
continue
# {LOAD_GLOBAL|LOAD_NAME} {LOAD_ATTR}* (and no more
# LOAD_ATTR/STORE_ATTR)
Expand Down

0 comments on commit ddf6429

Please sign in to comment.