We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88b4755 commit d2e9598Copy full SHA for d2e9598
expander.py
@@ -18,11 +18,8 @@ class Expander:
18
19
include_guard = re.compile('#.*ATCODER_[A-Z_]*_HPP')
20
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()]
+ def __init__(self, lib_paths: List[Path]):
+ self.lib_paths = lib_paths
26
27
included = set() # type: Set[str]
28
0 commit comments