Joshua Chaitin-Pollak
Joshua Chaitin-Pollak
We love Thumbs Up Parrot, but its not square, so it appears too small to be very useful in Slack - could we have a square variant? If necessary, maybe...
Sorry if this has already been discussed, but I'd love to have Freedom Parrot for Slack, and a few of the others from here: https://www.reddit.com/r/PartyParrot/wiki/howto I looked into getting them,...
We have found an odd situation where when we use a cl-image directive with an ng-show / ng-hide directive (set to the cloudinaryPublicId) in the same the ng-hide does not...
I get the following trying to run my command: ``` ✖ error Failed to run command ✖ error git clone https://github.com/actions/cache.git /tmp/wflow/nXsNN3QawUtqFxqc/workspaces/Voe8BIbD3uraqNzS/actions/actions/cache;cd /tmp/wflow/nXsNN3QawUtqFxqc/workspaces/Voe8BIbD3uraqNzS/actions/actions/cache;docker build -t actions/cache .;docker run -l wflow...
I can sucessfully run `./xmrMiner --benchmark` once per reboot. After a Ctrl+C, I am unable to restart the benchmark or regular mining. On first run, if I don't add `--benchmark`,...
calling `create_behaviour_from_function` like this: ``` def update(self: py_trees.behaviour.Behaviour) -> py_trees.common.Status: return py_trees.common.Status.SUCCESS return py_trees.meta.create_behaviour_from_function( update )(name='Has More To Do') ``` results in this error from my_py: ` error: Returning Any...
class Composite should be declared as: ``` class Composite(behaviour.Behaviour): current_child: Optional[Behaviour] ``` otherwise current_child is typed as None according to the Composite.__init__ method.
Selector's init is currently (2.1.6) typed as: ``` def __init__(self, name="Selector", memory=False, children=None): ``` but should match Sequence and Parallel: ``` def __init__( self, name: str="Selector", memory: bool=True, children: typing.List[behaviour.Behaviour]=None...
This PR enables "check_untyped_defs" which allows mypy to check functions (defs) that don't have explicit typing in their headers. This found many issues, which I resolved, mostly in good ways,...
This PR makes a few typing-related changes: * enables typing "approximately project wide" - py_trees and tests are checked, setup.py and doc/ is not * Adds Generics to ComparisonExpression (https://github.com/splintered-reality/py_trees/issues/336)...