Skip to content

Commit d2e9598

Browse files
committed
refactor
1 parent 88b4755 commit d2e9598

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

expander.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,8 @@ class Expander:
1818

1919
include_guard = re.compile('#.*ATCODER_[A-Z_]*_HPP')
2020

21-
def __init__(self, lib_paths: List[Path] = None):
22-
if lib_paths:
23-
self.lib_paths = lib_paths
24-
else:
25-
self.lib_paths = [Path.cwd()]
21+
def __init__(self, lib_paths: List[Path]):
22+
self.lib_paths = lib_paths
2623

2724
included = set() # type: Set[str]
2825

0 commit comments

Comments
 (0)