We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bc1fb commit 3b17851Copy full SHA for 3b17851
1 file changed
scripts/update-copyright.py
@@ -30,6 +30,8 @@ def main(args):
30
# Process files and keep track if there were modifications
31
were_files_modified = False
32
for file_path in args.file_paths:
33
+ if file_path.endswith(os.path.join("docs", "conf.py")):
34
+ continue
35
is_file_modified = update_copyright(file_path)
36
if is_file_modified:
37
were_files_modified = True
0 commit comments