dev590t
dev590t
I have found a commit about how Make UDT encoding to support options: #1266. And a other make UDT to support List fields" : #1229
Here is a other example that shows a different behavior between CassandraSyncContext and CassandraMirrorContext for the type `Try[Int]` https://scastie.scala-lang.org/dev590t/DV5PLzFPTuOISvVnuElJzA/167 It seem the problem don't concern only Option[List[String]]
workaround add a Decoder[Option[List[String]]] don't solve the problem should add a Decoder for the udt containing field with Option[List[String]] https://scastie.scala-lang.org/dev590t/yIbvAomrTl64NqUswq4BlA
Similar issue for me, smart_importer works when I import from local ofx file, but give me three postings for some transaction when using smart_importer with `tarioch/beancounttools Nordigen importer`. And it...
It is better if you can give more details Here is a solution: ``` # kopia snapshot list root@hostname:/path/to/backup 2024-08-01 00:41:59 UTC k9e74d14f50a14e4e276c34a067dee423 21.7 GB drwxrwxrwx files:347728 dirs:80466 (latest-2,hourly-2) 2024-08-01...
After testing few patterns, I discover follow pattern can match `git/logs` ``` logs #!*/*/git/logs ``` ``` logs !/**/git/logs ``` `dir/dir1/git/logs` is included. But follow pattern fails: ``` logs !**/git/logs ```...
That is documentation of ofxtool about parsing OFX file: https://ofxtools.readthedocs.io/en/latest/parser.html#deviations-from-the-ofx-specification: ``` In [1]: from ofxtools.Parser import OFXTree In [2]: parser = OFXTree() In [3]: with open('2015-09_amtd.ofx', 'rb') as f: #...
@kedder ,A other issue I have is when file contains special UTF-8 char, the ofx reader encounter encoding issue, uncommented the header help solve the issue. What is purpose to...
is related to #133