Skip to content

Commit e8aeb1c

Browse files
committed
Fix format for CI by yapf
1 parent 76effc6 commit e8aeb1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onlinejudge_verify/languages/cplusplus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def list_dependencies(self, path: pathlib.Path, *, basedir: pathlib.Path) -> Lis
186186
joined_CXXFLAGS = ' '.join(map(shlex.quote, [*env.CXXFLAGS, '-I', str(basedir)]))
187187
return _cplusplus_list_depending_files(path.resolve(), CXX=env.CXX, joined_CXXFLAGS=joined_CXXFLAGS)
188188

189-
def bundle(self, path: pathlib.Path, *, basedir: pathlib.Path=pathlib.Path.cwd(), options: Dict[str, Any]) -> bytes:
189+
def bundle(self, path: pathlib.Path, *, basedir: pathlib.Path = pathlib.Path.cwd(), options: Dict[str, Any]) -> bytes:
190190
bundler = Bundler(iquotes=options['include_paths'])
191191
bundler.update(path)
192192
return bundler.get()

0 commit comments

Comments
 (0)