Piotr Krzemiński
Results
2
issues of
Piotr Krzemiński
Hi! I have two resources: * `google_project_iam_member` that grants a certain role to a Service Account * `google_workbench_instance` (think: a Jupyter notebook) where the role is necessary to read an...
question
waiting-response
service/terraform
See this example piece of code: ```python msg = hl7.Message(separator="\r", sequence=[["MSH", "^~\\&"]]) unescaped = msg.unescape("\\E\\R\\") ``` `unescaped` should be `\R\` because: * the first `\E\` becomes a literal `\` *...