atdata 0.1.2a3__tar.gz → 0.1.2a4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: atdata
3
- Version: 0.1.2a3
3
+ Version: 0.1.2a4
4
4
  Summary: A loose federation of distributed, typed datasets
5
5
  Author-email: Maxine Levesque <hello@maxine.science>
6
6
  License-File: LICENSE
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "atdata"
3
- version = "0.1.2a3"
3
+ version = "0.1.2a4"
4
4
  description = "A loose federation of distributed, typed datasets"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -449,9 +449,12 @@ def packable( cls ):
449
449
 
450
450
  ##
451
451
 
452
+ # Add in dataclass niceness to original class
452
453
  as_dataclass = dataclass( cls )
453
454
 
454
- class as_packable( PackableSample, as_dataclass ):
455
+ # This triggers a bunch of behind-the-scenes stuff for the newly annotated class
456
+ @dataclass
457
+ class as_packable( as_dataclass, PackableSample ):
455
458
  def __post_init__( self ):
456
459
  return PackableSample.__post_init__( self )
457
460
 
@@ -459,5 +462,5 @@ def packable( cls ):
459
462
  as_packable.__annotations__ = cls.__annotations__
460
463
 
461
464
  ##
462
-
465
+
463
466
  return as_packable
File without changes
File without changes
File without changes
File without changes
File without changes