Skip to content

Commit

Permalink
Format only ai2thor code
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroHG committed Jun 7, 2024
1 parent e3ed9b4 commit fe013f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3704,7 +3704,9 @@ def format_cs(context):
# Now run dotnet-format as it allows more configuration options (e.g. curly brace with no new line).
# The following message will get emitted, this can safely be ignored
# "Warnings were encountered while loading the workspace. Set the verbosity option to the 'diagnostic' level to log warnings"
for proj in glob.glob("unity/*.csproj"):
cs_projs = glob.glob("unity/*.csproj")
cs_projs = ["unity/AI2-THOR-Base.csproj"]
for proj in cs_projs:
if any(
k in proj
for k in [
Expand Down

0 comments on commit fe013f1

Please sign in to comment.