kbasic 0.1.36__tar.gz → 0.1.37__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.3
2
2
  Name: kbasic
3
- Version: 0.1.36
3
+ Version: 0.1.37
4
4
  Summary: Keyan's basic utility functions.
5
5
  Author: Keyan Gootkin
6
6
  Author-email: Keyan Gootkin <keyangootkin@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "kbasic"
3
- version = "0.1.36"
3
+ version = "0.1.37"
4
4
  description = "Keyan's basic utility functions."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -126,7 +126,7 @@ class Log(File):
126
126
  def __init__(self, path: str | Self, verbose: bool = False, fmt: Callable[[str], str] = default_log_formater):
127
127
  File.__init__(self, path, verbose=verbose)
128
128
  self.fmt = fmt
129
- def __call__(self, msg: Array[str]|str, *args, **kwds):
129
+ def __call__(self, msg: Array|str, *args, **kwds):
130
130
  match msg:
131
131
  case str(): output = [self.fmt(msg, *args, **kwds)]
132
132
  case _ if type(msg) in Array.types: output = [self.fmt(m, *args, **kwds) for m in msg]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes