omdev 0.0.0.dev439__py3-none-any.whl → 0.0.0.dev440__py3-none-any.whl

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.
@@ -188,7 +188,7 @@
188
188
  "module": ".py.attrdocs",
189
189
  "attr": "_CLI_MODULE",
190
190
  "file": "omdev/py/attrdocs.py",
191
- "line": 160,
191
+ "line": 159,
192
192
  "value": {
193
193
  "!.cli.types.CliModule": {
194
194
  "name": "py/attrdocs",
@@ -90,6 +90,7 @@ class GithubCacheServiceV2:
90
90
  class CreateCacheEntryResponse:
91
91
  ok: bool
92
92
  signed_upload_url: str
93
+ message: ta.Optional[str] = None
93
94
 
94
95
  CREATE_CACHE_ENTRY_METHOD: Method[
95
96
  CreateCacheEntryRequest,
@@ -113,6 +114,7 @@ class GithubCacheServiceV2:
113
114
  class FinalizeCacheEntryUploadResponse:
114
115
  ok: bool
115
116
  entry_id: str
117
+ message: ta.Optional[str] = None
116
118
 
117
119
  FINALIZE_CACHE_ENTRY_METHOD: Method[
118
120
  FinalizeCacheEntryUploadRequest,
omdev/py/attrdocs.py CHANGED
@@ -24,12 +24,11 @@ class AttrDoc:
24
24
  trailing_comment: str | None = None
25
25
  preceding_comment: str | None = None
26
26
 
27
- __repr__ = lang.attr_ops(
28
- 'docstring',
29
- 'trailing_comment',
30
- 'preceding_comment',
31
- repr_filter=bool,
32
- ).repr
27
+ __repr__ = lang.attr_ops(lambda o: (
28
+ o.docstring,
29
+ o.trailing_comment,
30
+ o.preceding_comment,
31
+ ), repr_filter=bool).repr
33
32
 
34
33
 
35
34
  _EMPTY_ATTR_DOC = AttrDoc()
omdev/scripts/ci.py CHANGED
@@ -2547,6 +2547,7 @@ class GithubCacheServiceV2:
2547
2547
  class CreateCacheEntryResponse:
2548
2548
  ok: bool
2549
2549
  signed_upload_url: str
2550
+ message: ta.Optional[str] = None
2550
2551
 
2551
2552
  CREATE_CACHE_ENTRY_METHOD: Method[
2552
2553
  CreateCacheEntryRequest,
@@ -2570,6 +2571,7 @@ class GithubCacheServiceV2:
2570
2571
  class FinalizeCacheEntryUploadResponse:
2571
2572
  ok: bool
2572
2573
  entry_id: str
2574
+ message: ta.Optional[str] = None
2573
2575
 
2574
2576
  FINALIZE_CACHE_ENTRY_METHOD: Method[
2575
2577
  FinalizeCacheEntryUploadRequest,
File without changes
@@ -3,7 +3,7 @@
3
3
  # @omlish-lite
4
4
  # @omlish-script
5
5
  # @omlish-generated
6
- # @omlish-amalg-output ../../omlish/lite/inject.py
6
+ # @omlish-amalg-output ../../../omlish/lite/inject.py
7
7
  # @omlish-git-diff-omit
8
8
  # ruff: noqa: UP006 UP007 UP036 UP043 UP045
9
9
  import abc