Skip to content

Commit ccecb61

Browse files
committed
format
1 parent 495de75 commit ccecb61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

expander.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class Expander:
1717
'#include\s*["<](atcoder/[a-z_]*(|.hpp))[">]\s*')
1818

1919
include_guard = re.compile('#.*ATCODER_[A-Z_]*_HPP')
20+
2021
def is_ignored_line(self, line) -> bool:
2122
if self.include_guard.match(line):
2223
return True
@@ -55,7 +56,7 @@ def expand_acl(self, acl_name: str) -> List[str]:
5556
for line in acl_source.splitlines():
5657
if self.is_ignored_line(line):
5758
continue
58-
59+
5960
m = self.atcoder_include.match(line)
6061
if m:
6162
result.extend(self.expand_acl(m.group(1)))

0 commit comments

Comments
 (0)