google / flax
Showing 1 of 3 files from the diff.
Other files ignored by Codecov

@@ -95,7 +95,7 @@
Loading
95 95
96 96
  def copy(self, add_or_replace: Mapping[K, V]) -> 'FrozenDict[K, V]':
97 97
    """Create a new FrozenDict with additional or replaced entries."""
98 -
    return type(self)(self, **unfreeze(add_or_replace))
98 +
    return type(self)({**self, **unfreeze(add_or_replace)})
99 99
100 100
  def items(self):
101 101
    for key in self._dict:
Files Coverage
flax 82.30%
Project Totals (65 files) 82.30%

No yaml found.

Create your codecov.yml to customize your Codecov experience

Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading