Remove file from Files collection.
(self, file: File)
| 104 | self._src_uris[file.src_uri] = file |
| 105 | |
| 106 | def remove(self, file: File) -> None: |
| 107 | """Remove file from Files collection.""" |
| 108 | try: |
| 109 | del self._src_uris[file.src_uri] |
| 110 | except KeyError: |
| 111 | raise ValueError(f'{file.src_uri!r} not in collection') |
| 112 | |
| 113 | def copy_static_files( |
| 114 | self, |
no outgoing calls