Skip to content

Commit

Permalink
mess up fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
k-ye committed Jun 3, 2021
1 parent af651ba commit 154f441
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/taichi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@

__all__ = ['core', 'misc', 'lang', 'tools', 'main', 'torch_io']

__version__ = (core.get_version_major(), core.get_version_minor(),
__version__ = (core.get_version_major() , core.get_version_minor(),
core.get_version_patch())
2 changes: 1 addition & 1 deletion taichi/ir/basic_stmt_visitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void BasicStmtVisitor::visit(Block *stmt_list) {
std::vector<Stmt *> statements;
// Make a copy in case the pass modifies the block itself
for (auto &stmt : stmt_list->statements)
statements.push_back(stmt.get());
statements.push_back(stmt.get( ));
for (auto &stmt : statements)
stmt->accept(this);
}
Expand Down

0 comments on commit 154f441

Please sign in to comment.