Here's the completed code:
```
# Write a regular expression to search for anything in square brackets: pattern1
pattern1 = r"\[.*?\]"
# Use re.search to find the first text in square brackets
print(re.search(pattern1, scene_one))
```
The code defines a regular expression called `pattern1` that matches anything inside square brackets. It then uses `re.search()` with `pattern1` and `