robotcode-repl 1.0.3__tar.gz → 1.2.0__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: robotcode-repl
3
- Version: 1.0.3
3
+ Version: 1.2.0
4
4
  Summary: RobotCode REPL for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://opencollective.com/robotcode
@@ -25,7 +25,7 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
25
25
  Classifier: Topic :: Utilities
26
26
  Classifier: Typing :: Typed
27
27
  Requires-Python: >=3.8
28
- Requires-Dist: robotcode-runner==1.0.3
28
+ Requires-Dist: robotcode-runner==1.2.0
29
29
  Description-Content-Type: text/markdown
30
30
 
31
31
  # robotcode-repl
@@ -27,7 +27,7 @@ classifiers = [
27
27
  ]
28
28
  dynamic = ["version"]
29
29
  dependencies = [
30
- "robotcode-runner==1.0.3"
30
+ "robotcode-runner==1.2.0"
31
31
  ]
32
32
 
33
33
  [project.entry-points.robotcode]
@@ -0,0 +1 @@
1
+ __version__ = "1.2.0"
@@ -110,7 +110,7 @@ class ConsoleInterpreter(BaseInterpreter):
110
110
  if is_true(html):
111
111
  message = f"*HTML*{message}"
112
112
 
113
- self.app.echo(f"{' '*self.indent}[ {level} ] {message}", file=sys.__stdout__ if std_err else sys.__stderr__)
113
+ self.app.echo(f"{' ' * self.indent}[ {level} ] {message}", file=sys.__stdout__ if std_err else sys.__stderr__)
114
114
 
115
115
  def message(
116
116
  self, message: str, level: str, html: Union[str, bool] = False, timestamp: Union[datetime, str, None] = None
@@ -126,7 +126,8 @@ class ConsoleInterpreter(BaseInterpreter):
126
126
  return
127
127
 
128
128
  self.app.echo(
129
- f"{' '*self.indent}KEYWORD {result.libname}.{result.kwname} {' '.join(result.args)}", file=sys.__stdout__
129
+ f"{' ' * self.indent}KEYWORD {result.libname}.{result.kwname} {' '.join(result.args)}",
130
+ file=sys.__stdout__,
130
131
  )
131
132
  self.indent += 1
132
133
 
@@ -1 +0,0 @@
1
- __version__ = "1.0.3"
File without changes