Changeset - 04c804a5065c
[Not reviewed]
0 1 0
Brett Smith - 4 years ago 2020-06-09 13:04:27
brettcsmith@brettcsmith.org
books: Remove unused workdir() function.
1 file changed with 0 insertions and 11 deletions:
0 comments (0 inline, 0 general)
conservancy_beancount/books.py
Show inline comments
...
 
@@ -14,9 +14,7 @@
 
# You should have received a copy of the GNU Affero General Public License
 
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
 

	
 
import contextlib
 
import datetime
 
import os
 

	
 
from pathlib import Path
 

	
...
 
@@ -38,15 +36,6 @@ from .beancount_types import (
 
PathLike = Union[str, Path]
 
Year = Union[int, datetime.date]
 

	
 
@contextlib.contextmanager
 
def workdir(path: PathLike) -> Iterator[Path]:
 
    old_dir = os.getcwd()
 
    os.chdir(path)
 
    try:
 
        yield Path(old_dir)
 
    finally:
 
        os.chdir(old_dir)
 

	
 
class FiscalYear(NamedTuple):
 
    month: int = 3
 
    day: int = 1
0 comments (0 inline, 0 general)