diff --git a/_modules/fileformats/application/archive.html b/_modules/fileformats/application/archive.html index ec31091..ee98907 100644 --- a/_modules/fileformats/application/archive.html +++ b/_modules/fileformats/application/archive.html @@ -5,7 +5,7 @@ - fileformats.application.archive - FileFormats v0.14.0 + fileformats.application.archive - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1
+ diff --git a/_modules/fileformats/application/document.html b/_modules/fileformats/application/document.html index 1a3e448..e8ac3ee 100644 --- a/_modules/fileformats/application/document.html +++ b/_modules/fileformats/application/document.html @@ -5,7 +5,7 @@ - fileformats.application.document - FileFormats v0.14.0 + fileformats.application.document - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -351,7 +351,7 @@

Source code for fileformats.application.document

-
+ diff --git a/_modules/fileformats/application/medical.html b/_modules/fileformats/application/medical.html index e67ccbd..13ae801 100644 --- a/_modules/fileformats/application/medical.html +++ b/_modules/fileformats/application/medical.html @@ -5,7 +5,7 @@ - fileformats.application.medical - FileFormats v0.14.0 + fileformats.application.medical - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -370,7 +370,7 @@

Source code for fileformats.application.medical

<
-
+ diff --git a/_modules/fileformats/application/misc.html b/_modules/fileformats/application/misc.html index e7679e1..199328f 100644 --- a/_modules/fileformats/application/misc.html +++ b/_modules/fileformats/application/misc.html @@ -5,7 +5,7 @@ - fileformats.application.misc - FileFormats v0.14.0 + fileformats.application.misc - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -5561,7 +5561,7 @@

Source code for fileformats.application.misc

   
-
+ diff --git a/_modules/fileformats/application/serialization.html b/_modules/fileformats/application/serialization.html index 9b66bbe..b063f3e 100644 --- a/_modules/fileformats/application/serialization.html +++ b/_modules/fileformats/application/serialization.html @@ -5,7 +5,7 @@ - fileformats.application.serialization - FileFormats v0.14.0 + fileformats.application.serialization - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -271,7 +271,7 @@

Source code for fileformats.application.serialization

from pathlib import Path from fileformats.core import DataType, FileSet, extra_implementation from fileformats.core.mixin import WithClassifier -from ..generic import UnicodeFile +from fileformats.generic import UnicodeFile from fileformats.core.exceptions import FormatMismatchError from fileformats.core import SampleFileGenerator @@ -442,7 +442,7 @@

Source code for fileformats.application.serialization

+
diff --git a/_modules/fileformats/audio.html b/_modules/fileformats/audio.html index f7fc1c3..96cb00a 100644 --- a/_modules/fileformats/audio.html +++ b/_modules/fileformats/audio.html @@ -5,7 +5,7 @@ - fileformats.audio - FileFormats v0.14.0 + fileformats.audio - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -1713,7 +1713,7 @@

Source code for fileformats.audio

       
     
   
-
+
diff --git a/_modules/fileformats/core/classifier.html b/_modules/fileformats/core/classifier.html index 357c69f..a49b55d 100644 --- a/_modules/fileformats/core/classifier.html +++ b/_modules/fileformats/core/classifier.html @@ -5,7 +5,7 @@ - fileformats.core.classifier - FileFormats v0.14.0 + fileformats.core.classifier - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -331,7 +331,7 @@

Source code for fileformats.core.classifier

       
     
   
-
+ diff --git a/_modules/fileformats/core/datatype.html b/_modules/fileformats/core/datatype.html index c28ddbd..38b9c1d 100644 --- a/_modules/fileformats/core/datatype.html +++ b/_modules/fileformats/core/datatype.html @@ -5,7 +5,7 @@ - fileformats.core.datatype - FileFormats v0.14.0 + fileformats.core.datatype - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -531,6 +531,10 @@

Source code for fileformats.core.datatype

                         f"Did not find '{class_name}' class in fileformats.{namespace} "
                         f"corresponding to MIME, or MIME-like, type {mime_string}"
                     ) from None
+        if not issubclass(klass, cls):
+            raise FormatRecognitionError(
+                f"Class '{klass}' does not inherit from '{cls}'"
+            )
         return klass
 
     @classproperty
@@ -588,7 +592,7 @@ 

Source code for fileformats.core.datatype

       
     
   
-
+
diff --git a/_modules/fileformats/core/field.html b/_modules/fileformats/core/field.html index 014c3e3..9bf21cc 100644 --- a/_modules/fileformats/core/field.html +++ b/_modules/fileformats/core/field.html @@ -5,7 +5,7 @@ - fileformats.core.field - FileFormats v0.14.0 + fileformats.core.field - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -375,7 +375,7 @@

Source code for fileformats.core.field

       
     
   
-
+ diff --git a/_modules/fileformats/core/fileset.html b/_modules/fileformats/core/fileset.html index 2ab86fb..2acfdb1 100644 --- a/_modules/fileformats/core/fileset.html +++ b/_modules/fileformats/core/fileset.html @@ -5,7 +5,7 @@ - fileformats.core.fileset - FileFormats v0.14.0 + fileformats.core.fileset - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -1917,7 +1917,8 @@

Source code for fileformats.core.fileset

                     )
             shutil.move(str(fspath), new_path)
             new_paths.append(new_path)
-        return type(self)(new_paths)
+ self.fspaths = frozenset(new_paths) + return self
def _fspaths_to_copy( @@ -2084,7 +2085,7 @@

Source code for fileformats.core.fileset

       
     
   
- + diff --git a/_modules/fileformats/core/identification.html b/_modules/fileformats/core/identification.html index 5c33e8e..aeaa19b 100644 --- a/_modules/fileformats/core/identification.html +++ b/_modules/fileformats/core/identification.html @@ -5,7 +5,7 @@ - fileformats.core.identification - FileFormats v0.14.0 + fileformats.core.identification - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -585,7 +585,7 @@

Source code for fileformats.core.identification

<
-
+ diff --git a/_modules/fileformats/core/mixin.html b/_modules/fileformats/core/mixin.html index b96fa32..880f515 100644 --- a/_modules/fileformats/core/mixin.html +++ b/_modules/fileformats/core/mixin.html @@ -5,7 +5,7 @@ - fileformats.core.mixin - FileFormats v0.14.0 + fileformats.core.mixin - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -1055,7 +1055,7 @@

Source code for fileformats.core.mixin

       
     
   
-
+ diff --git a/_modules/fileformats/field.html b/_modules/fileformats/field.html index 98e7529..5e28361 100644 --- a/_modules/fileformats/field.html +++ b/_modules/fileformats/field.html @@ -5,7 +5,7 @@ - fileformats.field - FileFormats v0.14.0 + fileformats.field - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -568,7 +568,7 @@

Source code for fileformats.field

       
     
   
-
+ diff --git a/_modules/fileformats/generic/directory.html b/_modules/fileformats/generic/directory.html index a029172..aa58e5d 100644 --- a/_modules/fileformats/generic/directory.html +++ b/_modules/fileformats/generic/directory.html @@ -5,7 +5,7 @@ - fileformats.generic.directory - FileFormats v0.14.0 + fileformats.generic.directory - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -432,7 +432,7 @@

Source code for fileformats.generic.directory

-
+ diff --git a/_modules/fileformats/generic/file.html b/_modules/fileformats/generic/file.html index 0f79190..dad149e 100644 --- a/_modules/fileformats/generic/file.html +++ b/_modules/fileformats/generic/file.html @@ -5,7 +5,7 @@ - fileformats.generic.file - FileFormats v0.14.0 + fileformats.generic.file - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -536,7 +536,7 @@

Source code for fileformats.generic.file

       
     
   
-
+ diff --git a/_modules/fileformats/generic/fsobject.html b/_modules/fileformats/generic/fsobject.html index 03e107c..f91a663 100644 --- a/_modules/fileformats/generic/fsobject.html +++ b/_modules/fileformats/generic/fsobject.html @@ -5,7 +5,7 @@ - fileformats.generic.fsobject - FileFormats v0.14.0 + fileformats.generic.fsobject - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -440,7 +440,7 @@

Source code for fileformats.generic.fsobject

   
-
+ diff --git a/_modules/fileformats/generic/set.html b/_modules/fileformats/generic/set.html index 5ca0eff..66017b8 100644 --- a/_modules/fileformats/generic/set.html +++ b/_modules/fileformats/generic/set.html @@ -5,7 +5,7 @@ - fileformats.generic.set - FileFormats v0.14.0 + fileformats.generic.set - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -341,7 +341,7 @@

Source code for fileformats.generic.set

       
     
   
-
+ diff --git a/_modules/fileformats/image/notclassifiedyet.html b/_modules/fileformats/image/notclassifiedyet.html index 8efae30..4e4263b 100644 --- a/_modules/fileformats/image/notclassifiedyet.html +++ b/_modules/fileformats/image/notclassifiedyet.html @@ -5,7 +5,7 @@ - fileformats.image.notclassifiedyet - FileFormats v0.14.0 + fileformats.image.notclassifiedyet - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -821,7 +821,7 @@

Source code for fileformats.image.notclassifiedyet

+
diff --git a/_modules/fileformats/image/raster.html b/_modules/fileformats/image/raster.html index 84ff271..f2414be 100644 --- a/_modules/fileformats/image/raster.html +++ b/_modules/fileformats/image/raster.html @@ -5,7 +5,7 @@ - fileformats.image.raster - FileFormats v0.14.0 + fileformats.image.raster - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -388,7 +388,7 @@

Source code for fileformats.image.raster

       
     
   
-
+ diff --git a/_modules/fileformats/image/vector.html b/_modules/fileformats/image/vector.html index 857a6fd..60aec60 100644 --- a/_modules/fileformats/image/vector.html +++ b/_modules/fileformats/image/vector.html @@ -5,7 +5,7 @@ - fileformats.image.vector - FileFormats v0.14.0 + fileformats.image.vector - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -321,7 +321,7 @@

Source code for fileformats.image.vector

       
     
   
-
+ diff --git a/_modules/fileformats/model.html b/_modules/fileformats/model.html index 47bf404..e02e183 100644 --- a/_modules/fileformats/model.html +++ b/_modules/fileformats/model.html @@ -5,7 +5,7 @@ - fileformats.model - FileFormats v0.14.0 + fileformats.model - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -516,7 +516,7 @@

Source code for fileformats.model

       
     
   
-
+ diff --git a/_modules/fileformats/text.html b/_modules/fileformats/text.html index d1bc99c..17e2bdc 100644 --- a/_modules/fileformats/text.html +++ b/_modules/fileformats/text.html @@ -5,7 +5,7 @@ - fileformats.text - FileFormats v0.14.0 + fileformats.text - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -958,7 +958,7 @@

Source code for fileformats.text

       
     
   
-
+ diff --git a/_modules/fileformats/video.html b/_modules/fileformats/video.html index 9cd4461..4ccef09 100644 --- a/_modules/fileformats/video.html +++ b/_modules/fileformats/video.html @@ -5,7 +5,7 @@ - fileformats.video - FileFormats v0.14.0 + fileformats.video - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -911,7 +911,7 @@

Source code for fileformats.video

       
     
   
-
+ diff --git a/_modules/index.html b/_modules/index.html index b5cd35a..7d05569 100644 --- a/_modules/index.html +++ b/_modules/index.html @@ -5,7 +5,7 @@ - Overview: module code - FileFormats v0.14.0 + Overview: module code - FileFormats v0.14.1 @@ -171,7 +171,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -198,7 +198,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -321,7 +321,7 @@

All modules for which code is available

- + diff --git a/_static/documentation_options.js b/_static/documentation_options.js index 97e579f..3ff3511 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '0.14.0', + VERSION: '0.14.1', LANGUAGE: 'English', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/api.html b/api.html index ef86e9e..a161f81 100644 --- a/api.html +++ b/api.html @@ -6,7 +6,7 @@ - API - FileFormats v0.14.0 + API - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -1448,7 +1448,7 @@

Fields

- + diff --git a/detection.html b/detection.html index f66799b..2dd42e7 100644 --- a/detection.html +++ b/detection.html @@ -6,7 +6,7 @@ - Detection - FileFormats v0.14.0 + Detection - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -466,7 +466,7 @@

Identification +

diff --git a/developer/extensions.html b/developer/extensions.html index 01b8368..79c550f 100644 --- a/developer/extensions.html +++ b/developer/extensions.html @@ -6,7 +6,7 @@ - Extensions - FileFormats v0.14.0 + Extensions - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -667,7 +667,7 @@

Custom format patterns

- + diff --git a/developer/extras.html b/developer/extras.html index c525330..8418895 100644 --- a/developer/extras.html +++ b/developer/extras.html @@ -6,7 +6,7 @@ - Extras - FileFormats v0.14.0 + Extras - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -543,7 +543,7 @@

Registering converters

- + diff --git a/file_handling.html b/file_handling.html index be54e85..ed02905 100644 --- a/file_handling.html +++ b/file_handling.html @@ -6,7 +6,7 @@ - File handling - FileFormats v0.14.0 + File handling - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -598,7 +598,7 @@

Hashing

- + diff --git a/genindex.html b/genindex.html index 468abc8..ba63c44 100644 --- a/genindex.html +++ b/genindex.html @@ -4,7 +4,7 @@ - Index - FileFormats v0.14.0 + Index - FileFormats v0.14.1 @@ -170,7 +170,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -197,7 +197,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -2462,7 +2462,7 @@

Z

- + diff --git a/index.html b/index.html index 74434ce..67a1b5e 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ - FileFormats v0.14.0 + FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -415,7 +415,7 @@

License

- + diff --git a/mime.html b/mime.html index a9a8933..e9311c6 100644 --- a/mime.html +++ b/mime.html @@ -6,7 +6,7 @@ - MIME types - FileFormats v0.14.0 + MIME types - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -418,7 +418,7 @@

Informal ("MIME-like") +

diff --git a/quick_start.html b/quick_start.html index db54004..3661340 100644 --- a/quick_start.html +++ b/quick_start.html @@ -6,7 +6,7 @@ - Quick start - FileFormats v0.14.0 + Quick start - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -412,7 +412,7 @@

Quick start +

diff --git a/read_write.html b/read_write.html index bc324b1..599f32f 100644 --- a/read_write.html +++ b/read_write.html @@ -6,7 +6,7 @@ - Read, write and convert - FileFormats v0.14.0 + Read, write and convert - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -416,7 +416,7 @@

Converters +

diff --git a/reference/application.html b/reference/application.html index 082152d..d8a5f27 100644 --- a/reference/application.html +++ b/reference/application.html @@ -6,7 +6,7 @@ - Application - FileFormats v0.14.0 + Application - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -4440,7 +4440,7 @@

Application +

diff --git a/reference/audio.html b/reference/audio.html index a935041..2ff9a9e 100644 --- a/reference/audio.html +++ b/reference/audio.html @@ -6,7 +6,7 @@ - Audio - FileFormats v0.14.0 + Audio - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -1303,7 +1303,7 @@

Audio

- + diff --git a/reference/datascience.html b/reference/datascience.html index 031d452..371343d 100644 --- a/reference/datascience.html +++ b/reference/datascience.html @@ -6,7 +6,7 @@ - Datascience - FileFormats v0.14.0 + Datascience - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -325,7 +325,7 @@

Datascience +

diff --git a/reference/image.html b/reference/image.html index 23522e4..b82e29d 100644 --- a/reference/image.html +++ b/reference/image.html @@ -6,7 +6,7 @@ - Image - FileFormats v0.14.0 + Image - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -787,7 +787,7 @@

Unclassified +

diff --git a/reference/medimage.html b/reference/medimage.html index ba8a521..eb33038 100644 --- a/reference/medimage.html +++ b/reference/medimage.html @@ -6,7 +6,7 @@ - Medimage - FileFormats v0.14.0 + Medimage - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -351,7 +351,7 @@

Contents classifiers

- + diff --git a/reference/model.html b/reference/model.html index 11a1394..6b3adc7 100644 --- a/reference/model.html +++ b/reference/model.html @@ -6,7 +6,7 @@ - Model - FileFormats v0.14.0 + Model - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -476,7 +476,7 @@

Model

- + diff --git a/reference/text.html b/reference/text.html index bace9e1..cd2b17b 100644 --- a/reference/text.html +++ b/reference/text.html @@ -6,7 +6,7 @@ - Text - FileFormats v0.14.0 + Text - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -779,7 +779,7 @@

Text

- + diff --git a/reference/video.html b/reference/video.html index 7f5534e..3fdb61f 100644 --- a/reference/video.html +++ b/reference/video.html @@ -6,7 +6,7 @@ - Video - FileFormats v0.14.0 + Video - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -744,7 +744,7 @@

Video

- + diff --git a/search.html b/search.html index b1ef0f8..f4e18b0 100644 --- a/search.html +++ b/search.html @@ -7,7 +7,7 @@ -Search - FileFormats v0.14.0 +Search - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -308,7 +308,7 @@
- + diff --git a/typing.html b/typing.html index 655ac99..4449518 100644 --- a/typing.html +++ b/typing.html @@ -6,7 +6,7 @@ - Typing - FileFormats v0.14.0 + Typing - FileFormats v0.14.1 @@ -172,7 +172,7 @@
-
FileFormats v0.14.0
+
FileFormats v0.14.1
@@ -199,7 +199,7 @@
- FileFormats v0.14.0 + FileFormats v0.14.1 @@ -509,7 +509,7 @@

Subclass hooks +