Skip to content

Commit

Permalink
rebase stage 2: move fitz_old/table.py -> src/table.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-smith-artifex-com committed Dec 20, 2023
1 parent 33f3214 commit e385264
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ def add( ret, from_, to_):
add( ret_p, f'{g_root}/fitz_old/__init__.py', to_dir)
add( ret_p, f'{g_root}/fitz_old/__main__.py', to_dir)
add( ret_p, f'{g_root}/fitz_old/fitz_old.py', to_dir)
add( ret_p, f'{g_root}/fitz_old/table.py', to_dir)
add( ret_p, f'{g_root}/src/table.py', to_dir)
add( ret_p, f'{g_root}/fitz_old/utils.py', to_dir)
add( ret_p, f'{g_root}/fitz_old/{path_so_leaf_a}', to_dir)

Expand All @@ -600,7 +600,7 @@ def add( ret, from_, to_):
add( ret_p, f'{g_root}/src/__init__.py', to_dir)
add( ret_p, f'{g_root}/src/__main__.py', to_dir)
add( ret_p, f'{g_root}/src/fitz.py', to_dir)
add( ret_p, f'{g_root}/fitz_old/table.py', to_dir)
add( ret_p, f'{g_root}/src/table.py', to_dir)
add( ret_p, f'{g_root}/src/utils.py', to_dir)
add( ret_p, f'{g_root}/src/extra.py', to_dir)
add( ret_p, f'{g_root}/src/{path_so_leaf_b}', to_dir)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_flake8.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ def run(command):
print(f'test_flake8(): Running: {command}')
subprocess.run(command, shell=1, check=1)
run(f'pip install flake8')
run(f'flake8 --ignore={ignores} --statistics {root}/src/__init__.py {root}/src/utils.py {root}/fitz/table.py')
run(f'flake8 --ignore={ignores} --statistics {root}/src/__init__.py {root}/src/utils.py {root}/src/table.py')
print(f'test_flake8(): flake8 succeeded.')

0 comments on commit e385264

Please sign in to comment.